Styled the button to admin place

This commit is contained in:
2021-10-21 22:44:47 -03:00
parent 1f85f97f7e
commit d1a428a3e9
3 changed files with 34 additions and 1 deletions

View File

@@ -28,6 +28,27 @@ header {
left: 5%;
width: 10vw;
padding: 2vh 0px;
$backgroundColor: rgb(231, 111, 75);
background-color: $backgroundColor;
border: 1px solid adjust-color($color: $backgroundColor, $saturation: 33%, $alpha: 1.0);
border-radius: 5px;
color: #fff;
font-weight: bold;
cursor: pointer;
transition: ease-in-out 0.1s;
&:hover {
background-color: adjust-color($color: $backgroundColor, $blackness: 10%, $alpha: 1.0);
transition: ease-in-out 0.2s;
}
}
}