Fix for missing edges on some boxes

This commit is contained in:
Will McGugan
2022-05-20 13:59:36 +01:00
parent fe99c72c9e
commit ba48050721
3 changed files with 14 additions and 15 deletions

View File

@@ -40,7 +40,7 @@ App > Screen {
background: $primary-darken-2;
color: $text-primary-darken-2 ;
border-right: outer $primary-darken-3;
content-align: center middle;
content-align: center middle;
}
#sidebar .user {
@@ -168,7 +168,7 @@ OptionItem {
height: 3;
background: $primary;
border-right: outer $primary-darken-2;
border-left: hidden;
border-left: blank;
content-align: center middle;
}
@@ -223,4 +223,4 @@ Success {
.horizontal {
layout: horizontal
}
}

View File

@@ -7,12 +7,14 @@ Horizontal {
.test {
width: auto;
height: auto;
height: 5;
background: white 50%;
border:solid green;
/* border:solid green; */
border-right: outer green;
border-left: outer blue;
padding: 0;
margin:3;
align: center middle;
box-sizing: content-box;
}
box-sizing: border-box;
}