mirror of
https://github.com/Fabio286/antares.git
synced 2025-06-05 21:59:22 +02:00
Notifications board
This commit is contained in:
10
src/renderer/scss/_transitions.scss
Normal file
10
src/renderer/scss/_transitions.scss
Normal file
@@ -0,0 +1,10 @@
|
||||
.slide-fade-enter-active {
|
||||
transition: all .3s ease;
|
||||
}
|
||||
.slide-fade-leave-active {
|
||||
transition: all .3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
|
||||
}
|
||||
.slide-fade-enter, .slide-fade-leave-to {
|
||||
transform: translateX(10px);
|
||||
opacity: 0;
|
||||
}
|
@@ -1,10 +1,11 @@
|
||||
/*Colors*/
|
||||
$body-bg: #1d1d1d;
|
||||
$body-font-color: #fff;
|
||||
$primary-color: #e36929;
|
||||
$bg-color: #1d1d1d;
|
||||
$bg-color-light: #3f3f3f;
|
||||
$bg-color-gray: #272727;
|
||||
$primary-color: #e36929;
|
||||
$error-color: #de3b28;
|
||||
|
||||
/*Sizes*/
|
||||
$settingbar-width: 3rem;
|
||||
|
@@ -1,4 +1,5 @@
|
||||
@import "variables";
|
||||
@import "transitions";
|
||||
@import "mdi-additions";
|
||||
@import "~spectre.css/src/spectre";
|
||||
|
||||
|
Reference in New Issue
Block a user