mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2026-01-20 19:31:17 +00:00
29 lines
560 B
SCSS
29 lines
560 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;
|
|
}
|
|
}
|
|
|
|
.ant-spin-nested-loading > div > .ant-spin {
|
|
max-height: unset;
|
|
}
|