You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
838 B
Plaintext
44 lines
838 B
Plaintext
.container {
|
|
background-color: transparent;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.buttonRow {
|
|
display: flex;
|
|
gap: 16px;
|
|
flex-wrap: wrap;
|
|
margin-top: 10px;
|
|
margin-left: 5px;
|
|
padding: 10px 20px 10px 30px;
|
|
background-color: #EBF0FE;
|
|
}
|
|
|
|
.button {
|
|
background-color: transparent;
|
|
color: #333333;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
padding: 8px 16px;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
border: 1px solid transparent;
|
|
|
|
&:hover {
|
|
background-color: rgba(46, 76, 212, 0.1);
|
|
}
|
|
|
|
&.active {
|
|
color: #fff;
|
|
background: linear-gradient(180deg, #556FEB 0%, #8DAAF7 100%);
|
|
}
|
|
}
|
|
|
|
.contentArea {
|
|
flex: 1;
|
|
background-color: #EBF0FE;
|
|
margin-left: 5px;
|
|
// margin-top: 10px;
|
|
} |