Start Theme Repo

This commit is contained in:
2026-01-29 19:10:03 +01:00
commit 101179e994
84 changed files with 14654 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
/*
* Safari Flexbox CSS Fixes
*
* @package Treville
*/
/* Fix Flexbox issues for Safari 6.1-10.0 */
@media screen and ( min-color-index: 0 ) and ( -webkit-min-device-pixel-ratio: 0 ) {
@media {
.widget-magazine-posts .magazine-grid .post-column,
.sidebar .widget-wrap {
margin-right: -1px;
}
}
}
/* Fix Flexbox issues for Safari 10.1+ */
@media not all and ( min-resolution: .001dpcm ) {
@media {
.widget-magazine-posts .magazine-grid .post-column,
.sidebar .widget-wrap {
margin-right: -1px;
}
}
}