From 45238ff7866d24f28b47472f44c97e41dba3b6b0 Mon Sep 17 00:00:00 2001 From: medevod Date: Thu, 31 Oct 2024 23:36:19 +0100 Subject: [PATCH] fix tipo --- demo/sections/helpers-section.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/demo/sections/helpers-section.html b/demo/sections/helpers-section.html index f2fd26f..bec6bd5 100644 --- a/demo/sections/helpers-section.html +++ b/demo/sections/helpers-section.html @@ -54,19 +54,19 @@

width and height

.mg-w[0-10] { width: [0-10]rem; } .mg-h[0-10] { height: [0-10]rem; } - .mg-margin-w[0-10] { min-witdh: [0-10]rem; } - .mg-margin-h[0-10] { min-height: [0-10]rem; } - .mg-margax-w[0-10] { max-width: [0-10]rem; } - .mg-margax-h[0-10] { max-height: [0-10]rem; } + .mg-min-w[0-10] { min-witdh: [0-10]rem; } + .mg-min-h[0-10] { min-height: [0-10]rem; } + .mg-max-w[0-10] { max-width: [0-10]rem; } + .mg-max-h[0-10] { max-height: [0-10]rem; }
0 to 100vh step 10 .mg-w[0-100]vh { width: [0-100]vh; } .mg-h[0-100]vh { height: [0-100]vh; } - .mg-margin-w[0-100]vh { min-witdh: [0-100]vh; } - .mg-margin-h[0-100]vh { min-height: [0-100]vh; } - .mg-margax-w[0-100]vh { max-width: [0-100]vh; } - .mg-margax-h[0-100]vh { max-height: [0-100]vh; } + .mg-min-w[0-100]vh { min-witdh: [0-100]vh; } + .mg-min-h[0-100]vh { min-height: [0-100]vh; } + .mg-max-w[0-100]vh { max-width: [0-100]vh; } + .mg-max-h[0-100]vh { max-height: [0-100]vh; }

Visibility

@@ -115,8 +115,8 @@

Text

.mg-text-overline { text-decoration: overline; } .mg-text-none { text-decoration: none; } .mg-text-break { word-break: break-all; } - .mg-text-ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; - } + .mg-text-ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: + nowrap;} .mg-text-clip { overflow: hidden; text-overflow: clip; white-space: nowrap; } .mg-text-[s-m-l-xl-2xl-3xl-4xl-5xl] { font-size: $base-font-size*N; } .mg-text-bold { font-weight: bold; }