@leuffen/themejs1 8.2.55 → 8.2.56
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/themes/theme1/index.scss +16 -3
package/package.json
CHANGED
package/themes/theme1/index.scss
CHANGED
|
@@ -119,7 +119,20 @@
|
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
|
|
122
|
+
.openhours {
|
|
123
|
+
tr {
|
|
124
|
+
td:first-child {
|
|
125
|
+
// Test should be on top of the cell
|
|
126
|
+
vertical-align: top;
|
|
127
|
+
font-weight: bold;
|
|
128
|
+
padding-right: 20px;
|
|
129
|
+
}
|
|
130
|
+
border-bottom: 1px solid var(--bs-gray-200);
|
|
131
|
+
&:last-child {
|
|
132
|
+
border-bottom: none;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
122
137
|
}
|
|
123
|
-
|
|
124
|
-
--joda-class: "table table-borderless";
|
|
125
|
-
}
|
|
138
|
+
|