seawolf2357 commited on
Commit
a09aec0
ยท
verified ยท
1 Parent(s): 5968142

Update app.css

Browse files
Files changed (1) hide show
  1. app.css +34 -15
app.css CHANGED
@@ -95,31 +95,50 @@ footer, .footer, div[class*="footer"], #footer {
95
  height: 100%;
96
  }
97
 
98
- /* Examples ์นด๋“œ ์Šคํƒ€์ผ๋ง */
99
- .ant-card {
100
- margin-bottom: 8px;
101
- cursor: pointer;
102
  width: 100%;
 
 
 
 
 
 
 
103
  }
104
 
105
- .ant-card:hover {
106
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
 
 
 
 
 
 
 
 
107
  }
108
 
109
- .ant-card-meta {
110
  padding: 12px;
111
  }
112
 
113
- /* ์ „์ฒด ๋ ˆ์ด์•„์›ƒ ์กฐ์ • */
114
- .ant-row {
115
- margin: 0 !important;
 
 
 
116
  }
117
 
118
- /* ์ขŒ์ธก ํŒจ๋„ Examples ์˜์—ญ */
119
- .ant-flex {
120
- width: 100%;
 
 
121
  }
122
 
123
- .ant-divider {
124
- margin: 24px 0 12px 0;
 
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
  }