From 32268be1c606fc575df27eccaf33b0c54d94c96e Mon Sep 17 00:00:00 2001 From: yoon Date: Fri, 14 Mar 2025 15:15:06 +0900 Subject: [PATCH] Mobile --- public/css/custom.css | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/public/css/custom.css b/public/css/custom.css index b168db7..acdf64e 100644 --- a/public/css/custom.css +++ b/public/css/custom.css @@ -457,4 +457,18 @@ cursor: not-allowed !important; transform: translateY(10px); } -/* Scroll Button end */ \ No newline at end of file +/* Scroll Button end */ + +/* Mobile */ + +/* 가로모드 모바일 디바이스 (가로 해상도가 768px 보다 작은 화면에 적용) */ +@media (max-width: 767px) { + aside { + display: none !important; + } +} + +/* 세로모드 모바일 디바이스 (가로 해상도가 576px 보다 작은 화면에 적용) */ +@media (max-width: 575px) { } + +/* Mobile end */ \ No newline at end of file