1
0
mirror of https://github.com/NicolasConstant/sengi synced 2025-02-01 11:06:54 +01:00

change remove CWs button to a fixed one

This commit is contained in:
Nicolas Constant 2019-03-27 19:15:52 -04:00
parent f4ed9c4482
commit 38d5ef40c7
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688

View File

@ -23,25 +23,26 @@
&--button { &--button {
@include clearButton; @include clearButton;
position: absolute;
// position: absolute;
// width: calc(80%);
// margin-left: 40%;
// transform: translateX(-40%);
width: calc(100%);
padding: 5px 0;
z-index: 10; z-index: 10;
padding: 3px;
text-align: center; text-align: center;
border: 2px $status-secondary-color dashed; border: 3px $status-secondary-color double;
width: calc(80%);
margin-left: 40%;
transform: translateX(-40%);
transition: all .2s; transition: all .2s;
background-color: $color-secondary; background-color: $color-secondary;
&:hover{ &:hover{
$hover-color: rgb(0, 206, 27); $hover-color: $status-secondary-color;
$hover-color: rgb(0, 231, 231);
$hover-color: rgb(164, 222, 255);
// $hover-color: $status-secondary-color;
background-color: $hover-color; background-color: $hover-color;
color: black; color: white;
border: 3px $hover-color dashed; border: 3px $hover-color double;
} }
} }
} }