aboutsummaryrefslogtreecommitdiff
path: root/src/App.scss
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2023-03-29 00:58:07 +0300
committerHenry Jameson <me@hjkos.com>2023-03-29 00:58:07 +0300
commit7bb28bb23c61e2d648eecf5d59969d32631f78e8 (patch)
treebc566b7527207c2146f39a7be58485787d2b9966 /src/App.scss
parent3ac67ab7274c199766d026fcf168bd2a3d4e2692 (diff)
frontends tab initial implementation, now you can (re)install frontends! yay!
Diffstat (limited to 'src/App.scss')
-rw-r--r--src/App.scss22
1 files changed, 19 insertions, 3 deletions
diff --git a/src/App.scss b/src/App.scss
index 3f352e8d..149d640f 100644
--- a/src/App.scss
+++ b/src/App.scss
@@ -645,6 +645,19 @@ option {
}
}
+.cards-list {
+ display: grid;
+ grid-auto-flow: row dense;
+ grid-template-columns: 1fr 1fr;
+
+ li {
+ border: 1px solid var(--border);
+ border-radius: var(--inputRadius);
+ padding: 0.5em;
+ margin: 0.25em;
+ }
+}
+
.btn-block {
display: block;
width: 100%;
@@ -655,16 +668,19 @@ option {
display: inline-flex;
vertical-align: middle;
- button {
+ button,
+ .button-dropdown {
position: relative;
flex: 1 1 auto;
- &:not(:last-child) {
+ &:not(:last-child),
+ &:not(:last-child) .button-default {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
- &:not(:first-child) {
+ &:not(:first-child),
+ &:not(:first-child) .button-default {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}