dlegr250_material_design 0.1.54 → 0.1.55
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5230062878795c350ec1a1925b500c66f478b362
|
4
|
+
data.tar.gz: 31597096239299f92b2ae22cdac5e51707491d14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ccfa1b25008edcd4ec4d94dc17640af6a5a1ff196fcc09a2e3755d5be6589ffe9243e70a3a15da24a1c015b9a864ccba0f63bbd0b70a4b96e65967173eb58905
|
7
|
+
data.tar.gz: b49484b8870289355b6a53f25ad89b5323c20333823ff5fd806892e0d8850d90a816a1ad7555b923f97fb149181c9939143cbdb04863a212b4d93a399093bfe1
|
@@ -2,9 +2,10 @@
|
|
2
2
|
//----------------------------------------------------------------------
|
3
3
|
|
4
4
|
.tabs {
|
5
|
-
display: table;
|
5
|
+
// display: table;
|
6
|
+
display: inline-block;
|
6
7
|
height: $tab-height;
|
7
|
-
table-layout: fixed;
|
8
|
+
// table-layout: fixed;
|
8
9
|
width: 100%;
|
9
10
|
}
|
10
11
|
|
@@ -19,12 +20,14 @@
|
|
19
20
|
border-bottom: 2px solid transparent;
|
20
21
|
color: color("helper");
|
21
22
|
cursor: pointer;
|
22
|
-
display: table-cell;
|
23
|
+
// display: table-cell;
|
24
|
+
display: inline-block;
|
25
|
+
float: left;
|
23
26
|
font-size: $font-size-normal;
|
24
27
|
font-weight: 600;
|
25
28
|
height: $tab-height - 2px; // Account for 2px bottom border on tab
|
26
|
-
|
27
|
-
|
29
|
+
max-width: 264px;
|
30
|
+
min-width: 72px;
|
28
31
|
padding: 0 $spacing-small;
|
29
32
|
text-align: center;
|
30
33
|
text-decoration: none;
|