Skip to content

Commit

Permalink
화면너비 800px 이하부터는 반응형 끄기
Browse files Browse the repository at this point in the history
  • Loading branch information
SangWon7242 committed Nov 15, 2022
1 parent f526bdc commit 24e36b3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/usr/common/head.jspf
Expand Up @@ -23,7 +23,7 @@
</head>
<body>

<header class="h-20 bg-gray-300">
<header class="con-min-width h-20 bg-gray-300">
<div class="con mx-auto h-full flex">
<a href="/" class="flex items-center px-3">
로고
Expand Down
14 changes: 8 additions & 6 deletions src/main/webapp/static/css/common.css
Expand Up @@ -10,6 +10,11 @@ html > body {
}

/* 라이브러리 */

.con-min-width {
min-width: 1080px;
}

.con {
width : 1080px;
margin: 0 auto;
Expand All @@ -25,10 +30,7 @@ html > body {
padding: 10px;
}

.btn-text-link {
color: skyblue;
}

.btn-text-link:hover {
text-decoration: underline;
/* 커스텀 */
body {
min-width: 800px;
}

0 comments on commit 24e36b3

Please sign in to comment.