mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-24 09:18:09 +00:00
parent
6f83bba6b5
commit
cd25b3f459
@ -1,3 +1,13 @@
|
|||||||
|
html, body {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: relative;
|
||||||
|
background-color: @color_body;
|
||||||
|
font-family: @font-default;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
.app {
|
.app {
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
|
37
src/styles/header.less
Normal file
37
src/styles/header.less
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
header {
|
||||||
|
width: 100%;
|
||||||
|
height: 52px;
|
||||||
|
background: @color_header;
|
||||||
|
|
||||||
|
svg {
|
||||||
|
fill: @color_white;
|
||||||
|
height: 28px;
|
||||||
|
width: 100px;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-wrapper {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
max-width: 1170px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 0 32px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:visited {
|
||||||
|
color: @color_white;
|
||||||
|
margin-left: 24px;
|
||||||
|
.hover();
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&:active {
|
||||||
|
color: @color_text_secondary;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -2,6 +2,7 @@
|
|||||||
@import './colors.less';
|
@import './colors.less';
|
||||||
@import './mixins.less';
|
@import './mixins.less';
|
||||||
@import './base.less';
|
@import './base.less';
|
||||||
|
@import './header.less';
|
||||||
@import './aside.less';
|
@import './aside.less';
|
||||||
@import './content.less';
|
@import './content.less';
|
||||||
@import './modal.less';
|
@import './modal.less';
|
||||||
|
Loading…
Reference in New Issue
Block a user