blob: c2c1b698ad24d759f4a9d600c73e799a12a66a3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
@mixin base-csslayout {
.v-csslayout {
overflow: hidden;
}
/* More specific selector to override 'v-connector' */
div.v-csslayout {
display: block;
}
.v-csslayout-margin, .v-csslayout-container {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.v-has-width > .v-csslayout-margin,
.v-has-width > .v-csslayout-margin > .v-csslayout-container {
width: 100%;
}
.v-has-height > .v-csslayout-margin,
.v-has-height > .v-csslayout-margin > .v-csslayout-container {
height: 100%;
}
.v-csslayout-margin-top {
padding-top: 12px;
}
.v-csslayout-margin-bottom {
padding-bottom: 12px;
}
.v-csslayout-margin-left {
padding-left: 12px;
}
.v-csslayout-margin-right {
padding-right: 12px;
}
}
|