blob: ad292938c426dd204472c0904f32b023365d194f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
@import "../valo/valo.scss";
@mixin mytheme {
@include valo;
.v-app { background-color: #e6e6e9; }
.mybg { background-color: #e6e6e6; }
.v-verticallayout-margin-top { padding-top: $v-layout-margin-top; }
.v-verticallayout-margin-right { padding-right: $v-layout-margin-top; }
.v-menubar {
.v-menubar-menuitem-menuRight {
position: absolute;
right: 10px;
top: 0;
}
}
}
|