0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-03 14:52:38 +00:00

Linting on .less files

This commit is contained in:
Trevor Buckner
2025-02-12 15:30:20 -05:00
parent b79c5954ff
commit 6b4f5bd0af
4 changed files with 16 additions and 24 deletions

View File

@@ -30,7 +30,6 @@ body {
color : white; color : white;
background-color : @red; background-color : @red;
i { margin-right : 30px; } i { margin-right : 30px; }
a { float : right; } a { float : right; }
} }
@@ -98,8 +97,8 @@ body {
padding : 10px; padding : 10px;
tr { tr {
border-bottom:1px solid; border-bottom : 1px solid;
&:last-of-type { border:none; } &:last-of-type { border : none; }
&:nth-child(even) { background : #DDDDDD; } &:nth-child(even) { background : #DDDDDD; }
} }
@@ -118,7 +117,7 @@ body {
} }
th { th {
font-weight:900; font-weight : 900;
&:nth-child(2) { background : #FFB3BA; } &:nth-child(2) { background : #FFB3BA; }
&:nth-child(3) { background : #FFDFBA; } &:nth-child(3) { background : #FFDFBA; }
&:nth-child(4) { background : #FFFFBA; } &:nth-child(4) { background : #FFFFBA; }

View File

@@ -6,28 +6,24 @@
background-color : @red; background-color : @red;
} }
} }
.cleanButton { .cleanButton {
display : inline-block; display : inline-block;
width : 100%; width : 100%;
} }
} }
.stats { .stats {
position : relative; position : relative;
.pending { .pending {
position : absolute; position : absolute;
top : 0.5em; top : 0.5em;
left : 100px; left : 100px;
width : 100%; width : 100%;
height : 100%; height : 100%;
} }
&:has(.pending) { &:has(.pending) { opacity : 0.5; }
opacity:0.5;
}
dl { dl { grid-template-columns : 200px 250px; }
grid-template-columns: 200px 250px;
}
} }

View File

@@ -11,8 +11,7 @@
justify-items : stretch; justify-items : stretch;
width : 100%; width : 100%;
margin-bottom : 20px; margin-bottom : 20px;
input { input {
height : 33px; height : 33px;
padding : 0px 10px; padding : 0px 10px;

View File

@@ -1,8 +1,8 @@
.notificationLookup { .notificationLookup {
width : 450px; width : 450px;
height : fit-content; height : fit-content;
.noNotification { margin-block : 20px; }
.notificationList { .notificationList {
display : flex; display : flex;
flex-direction : column; flex-direction : column;
@@ -30,8 +30,6 @@
font-size : 20px; font-size : 20px;
font-weight : 900; font-weight : 900;
} }
} }
} }
.noNotification { margin-block : 20px; }
} }