mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2025-12-13 09:45:50 +00:00
25 lines
491 B
SCSS
25 lines
491 B
SCSS
@import "variables";
|
|
|
|
:root {
|
|
--backgroundColor: #{$background-color};
|
|
--primaryColor: #{$primary-color};
|
|
--textColorSecondary: #{$text-color-secondary};
|
|
|
|
--amplify-primary-color: #{$primary-color};
|
|
--amplify-primary-tint: #{lighten($primary-color, 0.1)};
|
|
--amplify-primary-shade: #{$primary-color};
|
|
}
|
|
|
|
.sidebar-toggle {
|
|
font-size: 18px;
|
|
line-height: 64px;
|
|
padding: 0 24px;
|
|
cursor: pointer;
|
|
transition: color 0.3s;
|
|
color: #FFF;
|
|
|
|
&:hover {
|
|
color: #1890ff;
|
|
}
|
|
}
|