seawolf2357 commited on
Commit
7bfd8bd
ยท
verified ยท
1 Parent(s): cdfac48

Update app.css

Browse files
Files changed (1) hide show
  1. app.css +8 -6
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
- gap: 16px;
98
  }
99
 
100
  .examples-section .ant-col {
101
- flex: 0 0 calc(33.333% - 16px);
102
- max-width: calc(33.333% - 16px);
 
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
- flex: 0 0 calc(50% - 16px);
136
- max-width: calc(50% - 16px);
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