From 5dd054437b006857f6d24b71981c5b84626a7acd Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Fri, 17 May 2024 16:22:49 -0400 Subject: [PATCH] remove some classes --- src/stylelite.css | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/stylelite.css b/src/stylelite.css index 8feb1b4..88ca36b 100644 --- a/src/stylelite.css +++ b/src/stylelite.css @@ -344,7 +344,7 @@ dialog { max-width: 85%; } -/* Grid System */ +/* Layout Utilities */ .grid { display: grid; @@ -352,15 +352,8 @@ dialog { grid-template-columns: repeat(auto-fit, minmax(0%, 1fr)); } -/* Utilities */ - .group {display: flex;} .right {float:right} .left {float:left} .center {text-align: center;} .clear {content:'';display: table;clear:both} -.rounded {border-radius: calc(var(--size) / 4);} -.border {border: 1px solid var(--theme)} -.no-border {border: none} -.no-space {margin: 0; padding:0;} -.no-theme {--theme: var(--fg)}