12 lines
402 B
SCSS
12 lines
402 B
SCSS
|
|
:root{
|
||
|
|
--app-base-text-color:rgba(31, 35, 41, 1);
|
||
|
|
--app-base-text-font-size:14px;
|
||
|
|
--app-base-text-hover-color:rgba(51, 112, 255, 1);
|
||
|
|
--app-base-text-hover-bg-color:rgba(51, 112, 255, 0.1);
|
||
|
|
--app-base-action-text-color:var(--app-base-text-hover-color );
|
||
|
|
/** header 组件 */
|
||
|
|
--app-header-height: 56px;
|
||
|
|
--app-header-padding: 0 20px;
|
||
|
|
--app-header-bg-color: #252b3c;
|
||
|
|
}
|