create a card css component

This commit is contained in:
imperosol
2024-12-14 01:45:54 +01:00
parent aab093200b
commit 7af745087e
7 changed files with 123 additions and 100 deletions

View File

@ -1,3 +1,5 @@
@import "core/static/core/colors";
main {
box-sizing: border-box;
padding: 10px;
@ -25,7 +27,7 @@ main {
font-size: 1.2em;
line-height: 1.2em;
color: black;
background-color: #f2f2f2;
background-color: $primary-neutral-light-color;
border-radius: 5px;
font-weight: bold;
@ -34,7 +36,7 @@ main {
}
&:disabled {
background-color: #f2f2f2;
background-color: $primary-neutral-light-color;
color: #d4d4d4;
}
}

View File

@ -1,3 +1,5 @@
@import "core/static/core/colors";
#content {
padding: 10px !important;
}
@ -241,7 +243,7 @@
>div {
>a.button {
box-sizing: border-box;
background-color: #f2f2f2;
background-color: $primary-neutral-light-color;
display: flex;
justify-content: center;
align-items: center;