TODO implementation and partial status implementation on the dashobard page

This commit is contained in:
inpsyde-maticluznar 2024-10-25 14:35:16 +02:00
parent 637a9c6dca
commit 2afc530af5
No known key found for this signature in database
GPG key ID: D005973F231309F6
23 changed files with 636 additions and 58 deletions

View file

@ -4,14 +4,15 @@
width: 652px;
max-width: 100%;
margin: 0 auto;
padding:0 16px;
padding: 0 16px;
box-sizing: border-box;
}
&-container {
max-width: 1024px;
margin: 0 auto;
&--settings{
&--settings {
max-width: 938px;
}
}
@ -20,4 +21,32 @@
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
background-color: $color-white;
}
&-settings-card {
background-color: $color-white;
padding: 48px;
border-radius: 8px;
box-shadow: 0 2px 4px 0 #0000001A;
&__header {
display: flex;
align-items: center;
gap: 18px;
padding-bottom: 18px;
border-bottom: 2px solid $color-gray-700;
margin-bottom: 32px;
}
&__title {
@include font(16, 24, 600);
color: $color-blueberry;
margin:0 0 4px 0;
display: block;
}
&__description{
@include font(14, 20, 400);
color:$color-gray-800;
margin:0;
}
}
}