From 748797f3eb797181b28d18d921c584817422f102 Mon Sep 17 00:00:00 2001
From: Felix Boerner <ich@felix-boerner.de>
Date: Mon, 11 Nov 2024 13:26:11 +0000
Subject: [PATCH] feat: use new breakpoints
---
assets/scss/_content.scss | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/assets/scss/_content.scss b/assets/scss/_content.scss
index cca639d..c5f68ff 100644
--- a/assets/scss/_content.scss
+++ b/assets/scss/_content.scss
@@ -164,7 +164,7 @@
object-fit: cover;
}
-@media screen and (max-width: 991px) {
+@media screen and (max-width: $bp-smallish) {
.leftcontent {
display: block;
-o-object-position: 50% 0%;
@@ -209,7 +209,7 @@
}
}
-@media screen and (max-width: 767px) {
+@media screen and (max-width: $bp-tablet) {
.name {
margin-bottom: 20px;
}
@@ -219,7 +219,7 @@
}
}
-@media screen and (max-width: 479px) {
+@media screen and (max-width: $bp-mobile) {
.bold-text {
font-size: 42px;
line-height: 42px;
--
Gitblit v1.10.0