We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4f2e62 commit 4524fdbCopy full SHA for 4524fdb
src/views/Media/Events.vue
@@ -233,4 +233,25 @@ export default {
233
border-right-width: 1px;
234
border-right-color: $theme-color-primary-darker
235
}
236
+
237
+// For the mobile screen sizes, this overrides the settings in cveTableStacked,
238
+// which was causing tables to be split into multiple tables and the year
239
+// headings to be hidden. This keeps the tables intact. Mobile users will
240
+// be able to horizontally scroll as normal.
241
242
+@media only screen and (max-width: $desktop) {
243
244
+ td {
245
+ display: table-cell;
246
+ }
247
248
+ thead th {
249
250
251
252
+ tr {
253
+ display: table-row !important;
254
255
+}
256
257
</style>
0 commit comments