@miljodirektoratet/md-css 1.0.21 → 1.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/tile/tile.css +10 -4
package/package.json
CHANGED
package/src/tile/tile.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* HORIZONTAL TILES */
|
|
2
2
|
.md-tile {
|
|
3
|
-
padding:
|
|
3
|
+
padding: 26px;
|
|
4
4
|
border: 1px solid var(--mdGreyColor60);
|
|
5
5
|
background-color: var(--mdPrimaryColor10);
|
|
6
6
|
color: var(--mdGreyColor);
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
border: 1px solid var(--mdPrimaryColor);
|
|
19
19
|
background-color: var(--mdPrimaryColor20);
|
|
20
20
|
transition: all 0.15s ease-in-out;
|
|
21
|
+
cursor: pointer;
|
|
21
22
|
}
|
|
22
23
|
|
|
23
24
|
.md-tile:not(.md-tile--disabled):focus {
|
|
@@ -52,10 +53,13 @@
|
|
|
52
53
|
|
|
53
54
|
.md-tile__content-heading {
|
|
54
55
|
font-size: 20px;
|
|
56
|
+
align-items: flex-start;
|
|
57
|
+
display: flex;
|
|
55
58
|
}
|
|
56
59
|
|
|
57
60
|
.md-tile__content-description {
|
|
58
61
|
margin-top: 1em;
|
|
62
|
+
font-size: 16px;
|
|
59
63
|
}
|
|
60
64
|
|
|
61
65
|
.md-tile__arrow {
|
|
@@ -100,6 +104,7 @@
|
|
|
100
104
|
.md-tile-vertical:hover {
|
|
101
105
|
border: 1px solid var(--mdPrimaryColor);
|
|
102
106
|
background-color: var(--mdPrimaryColor20);
|
|
107
|
+
cursor: pointer;
|
|
103
108
|
transition: all 0.15s ease-in-out;
|
|
104
109
|
}
|
|
105
110
|
|
|
@@ -114,15 +119,15 @@
|
|
|
114
119
|
display: flex;
|
|
115
120
|
flex-direction: column;
|
|
116
121
|
align-items: center;
|
|
117
|
-
padding:
|
|
122
|
+
padding: 32px;
|
|
118
123
|
}
|
|
119
124
|
|
|
120
125
|
.md-tile-vertical--small .md-tile-vertical__content {
|
|
121
|
-
padding:
|
|
126
|
+
padding: 26px;
|
|
122
127
|
}
|
|
123
128
|
|
|
124
129
|
.md-tile-vertical--large .md-tile-vertical__content {
|
|
125
|
-
padding:
|
|
130
|
+
padding: 40px;
|
|
126
131
|
}
|
|
127
132
|
|
|
128
133
|
.md-tile-vertical__content-text {
|
|
@@ -149,4 +154,5 @@
|
|
|
149
154
|
|
|
150
155
|
.md-tile-vertical__content-description {
|
|
151
156
|
margin-top: 1em;
|
|
157
|
+
font-size: 16px;
|
|
152
158
|
}
|