From 0225bdb772d1334cc1aa7ab0fc3678df0864df6b Mon Sep 17 00:00:00 2001 From: AlisaLinUwU Date: Sun, 26 Jan 2025 10:42:28 +0500 Subject: Initialize --- src/main/resources/static/scss/_responsive.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/main/resources/static/scss/_responsive.scss (limited to 'src/main/resources/static/scss/_responsive.scss') diff --git a/src/main/resources/static/scss/_responsive.scss b/src/main/resources/static/scss/_responsive.scss new file mode 100644 index 0000000..7e6bff3 --- /dev/null +++ b/src/main/resources/static/scss/_responsive.scss @@ -0,0 +1,15 @@ +/* Normal desktop :1200px. */ +$large_device:'(min-width: 1200px) and (max-width: 1500px)'; + +/* Normal desktop :992px. */ +$mid_device:'(min-width: 992px) and (max-width: 1200px)'; + +/* Tablet desktop :768px. */ +$tablet_device:'(min-width: 768px) and (max-width: 991px)'; + +/* small mobile :320px. */ +$mobile_device:'(max-width: 767px)'; + +/* Large Mobile :480px. */ +$large_mobile:'only screen and (min-width: 480px) and (max-width: 767px)'; + -- cgit v1.2.3