1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-23 06:21:06 +00:00
trezor-wallet/src/styles/content.less

58 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-02-20 09:30:36 +00:00
article {
nav {
.account-tabs {
2018-03-08 16:10:53 +00:00
position: relative;
2018-02-20 09:30:36 +00:00
display: flex;
flex: 1;
align-items: center;
justify-content: space-between;
2018-03-08 16:10:53 +00:00
padding: 0px 28px; // 20px padding arround links
2018-02-20 09:30:36 +00:00
max-width: 600px;
a {
font-weight: 500;
font-size: 14px;
color: @color_text_secondary;
margin: 0px 4px;
2018-03-08 16:10:53 +00:00
padding: 20px;
.hover();
2018-02-20 09:30:36 +00:00
&.active,
&:hover {
color: @color_text_primary;
}
&:first-child {
margin-left: 0px;
}
&:last-child {
margin-right: 0px;
}
}
2018-03-08 16:10:53 +00:00
.indicator {
position: absolute;
bottom: -1px;
left: 0;
width: 100px;
height: 2px;
background: @color_green_primary;
transition: all 0.3s ease-in-out;
}
2018-02-20 09:30:36 +00:00
}
}
section {
flex: 1;
display: flex;
flex-direction: column;
background: @color_white;
p {
padding: 0px 48px;
color: @color_text_secondary;
}
}
}