79 lines
1.3 KiB
SCSS
79 lines
1.3 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;
|
|
}
|
|
|
|
.logout{
|
|
width: 32px;
|
|
height: 32px;
|
|
cursor: pointer;
|
|
background-color: transparent;
|
|
background-position: center;
|
|
background-size: 20px;
|
|
background-repeat: no-repeat;
|
|
border-radius: 4px;
|
|
transition: all 0.2s ease-in-out;
|
|
|
|
&:hover {
|
|
background-color: #ccc;
|
|
}
|
|
} |