Files
idp/idp_client/src/app/dashboard/dashboard.component.scss
Bastian Wagner 512160799e canvas
2024-09-08 13:57:58 +02:00

63 lines
1.0 KiB
SCSS

:host {
display: flex;
flex-direction: column;
height: 100vh;
width: 100vw;
align-items: center;
gap: 24px;
overflow: hidden;
}
.card-container {
overflow: hidden;
padding: 12px 0;
display: flex;
flex-direction: column;
}
.card-container__list{
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 12px;
width: 500px;
overflow: auto;
}
.create-container{
border: 1px dotted #ccc;
width: 500px;
display: flex;
padding: 12px;
justify-content: space-between;
box-sizing: border-box;
}
.chip {
background-color: black;
color: white;
border-radius: 10px;
padding: 4px 8px;
}
.counter{
color:rgb(252, 239, 0);
}
.header {
width: 100vw;
padding: 12px 24px;
display: flex;
box-sizing: border-box;
align-items: center;
justify-content: space-between;
.title {
font-size: 1.5rem;
}
}
.body_design{
flex-wrap: wrap;
align-items: flex-start;
gap: 32px;
justify-content: center;
}