Cleaned up code, removed unnessesary notifications

This commit is contained in:
Michał Gdula 2022-11-02 14:22:48 +00:00
parent d2858ce907
commit 26ddca3e6c
6 changed files with 216 additions and 163 deletions

View file

@ -773,13 +773,14 @@
.logs {
width: 100%;
height: 21rem;
height: 0;
padding: 0;
overflow-y: scroll;
overflow-y: hidden;
display: none; flex-direction: column;
display: flex;
flex-direction: column;
background-color: $bg;
@if calc($rad - 0.5rem) > 0 {
@ -787,6 +788,8 @@
} @else {
border-radius: 3px;
}
transition: height 0.3s cubic-bezier(.19, 1, .22, 1);
}
.log {
min-width: 850px;
@ -830,13 +833,14 @@
.bans {
width: 100%;
height: 21rem;
height: 0;
padding: 0;
overflow-y: scroll;
overflow-y: hidden;
display: none; flex-direction: column;
display: flex;
flex-direction: column;
background-color: $bg;
@if calc($rad - 0.5rem) > 0 {
@ -844,6 +848,8 @@
} @else {
border-radius: 3px;
}
transition: height 0.3s cubic-bezier(.19, 1, .22, 1);
}
.ban {
min-width: 900px;
@ -893,13 +899,14 @@
.user-settings {
width: 100%;
height: 21rem;
height: 0;
padding: 0;
overflow-y: scroll;
overflow-y: hidden;
display: none; flex-direction: column;
display: flex;
flex-direction: column;
background-color: $bg;
@if calc($rad - 0.5rem) > 0 {
@ -907,6 +914,8 @@
} @else {
border-radius: 3px;
}
transition: height 0.3s cubic-bezier(.19, 1, .22, 1);
}
.user {
min-width: 950px;