Spaces:
Paused
Paused
Update app.css
Browse files
app.css
CHANGED
|
@@ -94,17 +94,19 @@ footer, .footer, div[class*="footer"], #footer {
|
|
| 94 |
.examples-section .ant-row {
|
| 95 |
display: flex;
|
| 96 |
flex-wrap: wrap;
|
| 97 |
-
|
| 98 |
}
|
| 99 |
|
| 100 |
.examples-section .ant-col {
|
| 101 |
-
|
| 102 |
-
|
|
|
|
| 103 |
}
|
| 104 |
|
| 105 |
.examples-section .ant-card {
|
| 106 |
height: 100%;
|
| 107 |
cursor: pointer;
|
|
|
|
| 108 |
}
|
| 109 |
|
| 110 |
.examples-section .ant-card-meta {
|
|
@@ -125,15 +127,15 @@ footer, .footer, div[class*="footer"], #footer {
|
|
| 125 |
/* ๋ฐ์ํ ๋ ์ด์์ */
|
| 126 |
@media (max-width: 768px) {
|
| 127 |
.examples-section .ant-col {
|
|
|
|
| 128 |
flex: 0 0 100%;
|
| 129 |
-
max-width: 100%;
|
| 130 |
}
|
| 131 |
}
|
| 132 |
|
| 133 |
@media (min-width: 769px) and (max-width: 1200px) {
|
| 134 |
.examples-section .ant-col {
|
| 135 |
-
|
| 136 |
-
|
| 137 |
}
|
| 138 |
}
|
| 139 |
|
|
|
|
| 94 |
.examples-section .ant-row {
|
| 95 |
display: flex;
|
| 96 |
flex-wrap: wrap;
|
| 97 |
+
margin: -8px; /* ๋ค๊ฑฐํฐ๋ธ ๋ง์ง ์ถ๊ฐ */
|
| 98 |
}
|
| 99 |
|
| 100 |
.examples-section .ant-col {
|
| 101 |
+
padding: 8px;
|
| 102 |
+
width: 33.333333%;
|
| 103 |
+
flex: 0 0 33.333333%;
|
| 104 |
}
|
| 105 |
|
| 106 |
.examples-section .ant-card {
|
| 107 |
height: 100%;
|
| 108 |
cursor: pointer;
|
| 109 |
+
margin: 0; /* ๊ธฐ์กด ๋ง์ง ์ ๊ฑฐ */
|
| 110 |
}
|
| 111 |
|
| 112 |
.examples-section .ant-card-meta {
|
|
|
|
| 127 |
/* ๋ฐ์ํ ๋ ์ด์์ */
|
| 128 |
@media (max-width: 768px) {
|
| 129 |
.examples-section .ant-col {
|
| 130 |
+
width: 100%;
|
| 131 |
flex: 0 0 100%;
|
|
|
|
| 132 |
}
|
| 133 |
}
|
| 134 |
|
| 135 |
@media (min-width: 769px) and (max-width: 1200px) {
|
| 136 |
.examples-section .ant-col {
|
| 137 |
+
width: 50%;
|
| 138 |
+
flex: 0 0 50%;
|
| 139 |
}
|
| 140 |
}
|
| 141 |
|