fix(core): 🐛 hide sidebar lastmod on tablet

It is duplicated with footer
This commit is contained in:
alistair3149 2024-05-08 15:35:54 -04:00
parent d1101dd326
commit ed54bbfc33
No known key found for this signature in database
2 changed files with 7 additions and 1 deletions

View file

@ -52,7 +52,6 @@ final class Sidebar extends Partial {
/**
* Build last modified template data
* TODO: Use relative time instead (#700)
*
* @return array|null
*/

View file

@ -23,3 +23,10 @@
border-radius: var( --border-radius--small );
}
}
#citizen-sidebar-lastmod {
@media ( max-width: @max-width-breakpoint-tablet ) {
// Duplicated with footer already
display: none;
}
}