registration

This commit is contained in:
Mikola 2023-11-08 22:04:18 +03:00
parent b3a2851329
commit bc00c72e7d

View File

@ -20,7 +20,29 @@
border-radius: 8px; border-radius: 8px;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
max-height: 750px; max-height: 650px;
overflow-y: auto;
@media (max-width: 880px) {
max-height: none;
overflow-y: inherit;
}
&::-webkit-scrollbar {
width: 3px;
border-radius: 10px;
}
&::-webkit-scrollbar-thumb {
background: #cbd9f9;
border-radius: 20px;
}
&::-webkit-scrollbar-track {
background: #c5c0c6;
border-radius: 20px;
}
.content { .content {
position: relative; position: relative;
@ -125,27 +147,6 @@
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
} }
.taskDescription {
max-height: 150px;
overflow-y: auto;
padding-right: 10px;
&::-webkit-scrollbar {
width: 4px;
border-radius: 10px;
}
&::-webkit-scrollbar-thumb {
background: #cbd9f9;
border-radius: 10px;
}
&::-webkit-scrollbar-track {
background: #c5c0c6;
border-radius: 10px;
}
}
.fullName { .fullName {
max-width: 800px; max-width: 800px;
} }
@ -157,8 +158,6 @@
.comments__list { .comments__list {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
max-height: 215px;
overflow: auto;
&::-webkit-scrollbar { &::-webkit-scrollbar {
width: 4px; width: 4px;