29 lines
524 B
SCSS
29 lines
524 B
SCSS
#content {
|
|
display: flex;
|
|
border-top: 1px solid black;
|
|
.left-dept {
|
|
flex: 20%;
|
|
padding: 35px 12px 0 0;
|
|
height: calc(100vh - 85px);
|
|
border: 1px solid red;
|
|
border-top: 1px solid black;
|
|
}
|
|
.right-user {
|
|
flex: 80%;
|
|
height: 190px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
.user-top-search {
|
|
}
|
|
.user-mid-button {
|
|
display: flex;
|
|
margin-left: 12px;
|
|
margin-top: 20px;
|
|
button:focus,
|
|
button:focus-visible {
|
|
outline: none;
|
|
}
|
|
}
|
|
}
|
|
}
|