Add shadow default hover and add connect rgb variable

This commit is contained in:
Konstantinos Triantafyllou 2022-06-02 17:28:34 +03:00
parent 46e2d2d0ce
commit e032e8ce0a
2 changed files with 6 additions and 1 deletions

View File

@ -30,6 +30,10 @@
box-shadow: var(--shadow-large);
}
.uk-box-shadow-default {
box-shadow: var(--shadow-default);
}
.uk-box-shadow-hover-small:hover {
box-shadow: var(--shadow-small);
}
@ -42,7 +46,7 @@
box-shadow: var(--shadow-large);
}
.uk-box-shadow-default {
.uk-box-shadow-default-hover:hover {
box-shadow: var(--shadow-default);
}

View File

@ -39,6 +39,7 @@
--monitor-dark-color: #228001;
/* Connect */
--connect-color: #EBB13E;
--connect-color-rgb: 235, 177, 62;
/* Graph */
--graph-color: #FA193E;
}