mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-07-06 15:46:22 +00:00
Change message active button colors
This commit is contained in:
@ -102,6 +102,7 @@ $tao-gray-color: #94A6B9; // @25% opacity
|
||||
$tao-yellow-color: #FFD68F;
|
||||
$tao-blue-color: #6697FF;
|
||||
$tao-green-color: #48BEB0;
|
||||
$tao-cyan-color: #60FDEB;
|
||||
$tao-red-color: #FF4583;
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
@import "../variables.scss";
|
||||
|
||||
@mixin set-button-style($color) {
|
||||
@mixin set-button-style($color, $shadow-color) {
|
||||
box-sizing: border-box;
|
||||
border-radius: 10px;
|
||||
background: $color;
|
||||
@ -16,10 +16,12 @@
|
||||
outline: none;
|
||||
|
||||
&:active {
|
||||
background: $tao-btn-font-color;
|
||||
border: $tao-btn-font-color;
|
||||
color: $color;
|
||||
border-radius: 10px;
|
||||
opacity: 0.5;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
box-shadow: 0 0 8px $shadow-color;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user