mirror of
https://github.com/documize/community.git
synced 2025-07-23 07:09:43 +02:00
29 lines
348 B
SCSS
29 lines
348 B
SCSS
|
.toolbar {
|
||
|
margin: 30px 0 0 0;
|
||
|
|
||
|
> .links {
|
||
|
display: inlne-block;
|
||
|
|
||
|
> .link {
|
||
|
color: $color-gray;
|
||
|
font-size: 1.1rem;
|
||
|
font-weight: bold;
|
||
|
display: inline-block;
|
||
|
margin-right: 30px;
|
||
|
cursor: pointer;
|
||
|
|
||
|
&:hover {
|
||
|
color: $color-link;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
> .selected {
|
||
|
color: $color-link;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
> .buttons {
|
||
|
float: right;
|
||
|
}
|
||
|
}
|