style: tweaks to settings (#772)

This commit is contained in:
Carlos Valente
2024-02-12 21:24:49 +01:00
committed by GitHub
parent 53963a9ad7
commit 67c448572c
7 changed files with 111 additions and 55 deletions
@@ -1,3 +1,5 @@
$inner-padding: 1rem;
.header {
font-size: 2rem;
padding-bottom: 0.5rem;
@@ -6,16 +8,24 @@
}
.subheader {
font-size: 1.25rem;
padding-bottom: 0.25rem;
font-size: 1.5rem;
padding-bottom: 0.5rem;
font-weight: 600;
display: flex;
align-items: center;
justify-content: space-between;
}
.title {
font-size: 1.25rem;
padding-left: $inner-padding;
display: flex;
align-items: center;
justify-content: space-between;
}
.section {
margin: 2rem 0;
margin-top: 2rem;
font-size: calc(1rem - 1px);
max-width: 800px;
}
@@ -25,7 +35,7 @@
}
.card {
padding: 1rem;
padding: 2rem;
background-color: $white-1;
border: 1px solid $gray-1100;
border-radius: 3px;
@@ -37,6 +47,12 @@
color: $error-red;
}
.pad {
padding: 0 1rem;
max-height: 500px;
overflow-y: scroll;
}
.table {
width: 100%;
border-collapse: collapse;
@@ -64,7 +80,7 @@
}
.listGroup {
padding: 1rem 0;
padding: 0.5rem 1rem 0 1rem;
> li:not(:last-child) {
border-bottom: 1px solid $white-10;
@@ -92,3 +108,8 @@
font-size: calc(1rem - 2px);
color: $red-500;
}
.divider {
border-top: 1px solid $white-10;
margin: 1rem -2rem;
}