@miljodirektoratet/md-css 3.0.2 → 3.1.0
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 +8 -3
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: 24px;
|
|
4
4
|
border: 1px solid var(--mdGreyColor60);
|
|
5
5
|
background-color: var(--mdPrimaryColor10);
|
|
6
6
|
color: var(--mdGreyColor);
|
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
justify-content: space-between;
|
|
10
10
|
text-decoration: none;
|
|
11
11
|
font-family: 'Open sans';
|
|
12
|
+
box-sizing: border-box;
|
|
13
|
+
gap: 1.5em;
|
|
14
|
+
text-align: start;
|
|
12
15
|
width: 440px;
|
|
13
16
|
max-width: 100%;
|
|
14
17
|
transition: all 0.15s ease-in-out;
|
|
@@ -74,7 +77,9 @@
|
|
|
74
77
|
.md-tile-vertical {
|
|
75
78
|
display: flex;
|
|
76
79
|
width: 190px;
|
|
80
|
+
box-sizing: border-box;
|
|
77
81
|
flex-direction: row;
|
|
82
|
+
text-align: center;
|
|
78
83
|
align-items: center;
|
|
79
84
|
justify-content: center;
|
|
80
85
|
border: 1px solid var(--mdGreyColor60);
|
|
@@ -123,11 +128,11 @@
|
|
|
123
128
|
}
|
|
124
129
|
|
|
125
130
|
.md-tile-vertical--small .md-tile-vertical__content {
|
|
126
|
-
padding:
|
|
131
|
+
padding: 24px;
|
|
127
132
|
}
|
|
128
133
|
|
|
129
134
|
.md-tile-vertical--large .md-tile-vertical__content {
|
|
130
|
-
padding:
|
|
135
|
+
padding: 48px;
|
|
131
136
|
}
|
|
132
137
|
|
|
133
138
|
.md-tile-vertical__content-text {
|