Files
CSS-NibblePoker/scss/site/mobile.scss
Herwin Bozet 9c9b1e17bd Added cursors, Fixed public domain header text in SCSS files
Update containers.scss, cursor.scss, and 12 more files...
2025-03-05 21:34:22 +01:00

20 lines
385 B
SCSS

// NibblePoker CSS Theme - CC0 1.0 (Public Domain)
/* Site > Fixes > Mobile */
@media only screen and (max-width: 768px) {
// Overrides the ".p-l" class used on "main".
main {
padding: calc(#{$margin-base-size} * 0.5) !important;
}
// Overrides a style in "site/content.scss".
.content-search-entry > p {
width: 100% !important;
}
.mobile-hide {
display: none;
}
}