improved sidebar smoothness and status feddback

This commit is contained in:
Roberto Tonino
2020-06-19 20:57:05 +02:00
parent 5314f7c07e
commit 973dc630c5
11 changed files with 145 additions and 92 deletions

View File

@@ -84,21 +84,21 @@ button {
text-transform: uppercase;
cursor: pointer;
transition: transform 50ms ease-in-out, background-color 200ms ease;
}
button:active {
background-color: var(--accent-color);
transform: scale(0.95);
}
&:active {
background-color: var(--accent-color);
transform: scale(0.95);
}
button:hover {
background: none;
border: 1px solid var(--accent-color);
&:hover {
background: none;
border: 1px solid var(--accent-color);
}
}
#main_content {
margin-left: 48px;
width: calc(100% - 48px);
margin-left: $sidebar-width;
width: calc(100% - $sidebar-width);
height: 100%;
display: flex;
}