We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6915fcd commit 2344bcbCopy full SHA for 2344bcb
2 files changed
web-components/card-tile/card-tile.css
@@ -39,10 +39,15 @@ a {
39
flex-flow: column nowrap;
40
}
41
42
+/* Styling for support card */
43
.support-card {
44
margin: 0.2em;
45
46
47
+.support-card .inline-g {
48
+ display: none;
49
+}
50
+
51
.support-card:hover {
52
background-color: #e3e3e3;
53
transition: 0.2s ease-in-out;
@@ -76,6 +81,7 @@ a {
76
81
height: 18.75em;
77
82
78
83
84
+ /* Set consistent height for support card */
79
85
80
86
height: 12em;
87
web-components/card-tile/card-tile.js
@@ -96,9 +96,6 @@ function createComponent(html) {
96
break;
97
case 'support':
98
cardSelector.classList.add('support-card');
99
- // Hide level and time
100
- const hideSelector = shadow.querySelector('.inline-g');
101
- hideSelector.style.display = 'none';
102
103
104
0 commit comments