Update app.css
Browse files
app.css
CHANGED
@@ -95,31 +95,50 @@ footer, .footer, div[class*="footer"], #footer {
|
|
95 |
height: 100%;
|
96 |
}
|
97 |
|
98 |
-
/* Examples
|
99 |
-
.
|
100 |
-
margin-bottom: 8px;
|
101 |
-
cursor: pointer;
|
102 |
width: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
}
|
104 |
|
105 |
-
.ant-
|
106 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
}
|
108 |
|
109 |
-
.ant-card-meta {
|
110 |
padding: 12px;
|
111 |
}
|
112 |
|
113 |
-
/*
|
114 |
-
|
115 |
-
|
|
|
|
|
|
|
116 |
}
|
117 |
|
118 |
-
|
119 |
-
.ant-
|
120 |
-
|
|
|
|
|
121 |
}
|
122 |
|
123 |
-
|
124 |
-
|
|
|
125 |
}
|
|
|
95 |
height: 100%;
|
96 |
}
|
97 |
|
98 |
+
/* Examples ์น์
์คํ์ผ๋ง */
|
99 |
+
.examples-section {
|
|
|
|
|
100 |
width: 100%;
|
101 |
+
padding: 24px;
|
102 |
+
margin-top: 24px;
|
103 |
+
}
|
104 |
+
|
105 |
+
.examples-section .ant-row {
|
106 |
+
display: flex !important;
|
107 |
+
flex-wrap: wrap !important;
|
108 |
}
|
109 |
|
110 |
+
.examples-section .ant-col {
|
111 |
+
flex: 0 0 33.333333% !important;
|
112 |
+
max-width: 33.333333% !important;
|
113 |
+
padding: 8px !important;
|
114 |
+
}
|
115 |
+
|
116 |
+
.examples-section .ant-card {
|
117 |
+
height: 100%;
|
118 |
+
margin: 0;
|
119 |
+
cursor: pointer;
|
120 |
}
|
121 |
|
122 |
+
.examples-section .ant-card-meta {
|
123 |
padding: 12px;
|
124 |
}
|
125 |
|
126 |
+
/* ๋ฐ์ํ ๋ ์ด์์ */
|
127 |
+
@media (max-width: 768px) {
|
128 |
+
.examples-section .ant-col {
|
129 |
+
flex: 0 0 100% !important;
|
130 |
+
max-width: 100% !important;
|
131 |
+
}
|
132 |
}
|
133 |
|
134 |
+
@media (min-width: 769px) and (max-width: 1200px) {
|
135 |
+
.examples-section .ant-col {
|
136 |
+
flex: 0 0 50% !important;
|
137 |
+
max-width: 50% !important;
|
138 |
+
}
|
139 |
}
|
140 |
|
141 |
+
/* ์ ์ฒด ๋ ์ด์์ ์กฐ์ */
|
142 |
+
.ant-row {
|
143 |
+
margin: 0 !important;
|
144 |
}
|