seawolf2357 commited on
Commit
cdfac48
Β·
verified Β·
1 Parent(s): 5976ead

Update app.css

Browse files
Files changed (1) hide show
  1. app.css +15 -15
app.css CHANGED
@@ -10,6 +10,7 @@
10
  width: 100%;
11
  padding: 5px 16px;
12
  background-color: #f5f5f5;
 
13
  }
14
 
15
  .header_btn {
@@ -74,28 +75,31 @@ footer, .footer, div[class*="footer"], #footer {
74
  /* Setting λ²„νŠΌ μŠ€νƒ€μΌλ§ */
75
  .setting-buttons {
76
  position: absolute;
77
- top: 10px;
78
- right: 10px;
79
  z-index: 1000;
80
  display: flex;
81
  gap: 8px;
 
 
82
  }
83
 
84
  /* Examples μ„Ήμ…˜ μŠ€νƒ€μΌλ§ */
85
  .examples-section {
86
- margin-top: 24px;
87
- padding: 0 24px;
88
  width: 100%;
 
 
89
  }
90
 
91
  .examples-section .ant-row {
92
  display: flex;
93
  flex-wrap: wrap;
94
- margin: -8px;
95
  }
96
 
97
  .examples-section .ant-col {
98
- padding: 8px;
 
99
  }
100
 
101
  .examples-section .ant-card {
@@ -111,7 +115,7 @@ footer, .footer, div[class*="footer"], #footer {
111
  .right_panel {
112
  position: relative;
113
  min-height: 600px;
114
- margin-top: 10px;
115
  }
116
 
117
  .html_content {
@@ -121,19 +125,15 @@ footer, .footer, div[class*="footer"], #footer {
121
  /* λ°˜μ‘ν˜• λ ˆμ΄μ•„μ›ƒ */
122
  @media (max-width: 768px) {
123
  .examples-section .ant-col {
124
- width: 100%;
 
125
  }
126
  }
127
 
128
  @media (min-width: 769px) and (max-width: 1200px) {
129
  .examples-section .ant-col {
130
- width: 50%;
131
- }
132
- }
133
-
134
- @media (min-width: 1201px) {
135
- .examples-section .ant-col {
136
- width: 33.333333%;
137
  }
138
  }
139
 
 
10
  width: 100%;
11
  padding: 5px 16px;
12
  background-color: #f5f5f5;
13
+ margin-top: 50px; /* Setting λ²„νŠΌμ„ μœ„ν•œ μ—¬λ°± μΆ”κ°€ */
14
  }
15
 
16
  .header_btn {
 
75
  /* Setting λ²„νŠΌ μŠ€νƒ€μΌλ§ */
76
  .setting-buttons {
77
  position: absolute;
78
+ top: 0;
79
+ right: 0;
80
  z-index: 1000;
81
  display: flex;
82
  gap: 8px;
83
+ padding: 10px;
84
+ background-color: white;
85
  }
86
 
87
  /* Examples μ„Ήμ…˜ μŠ€νƒ€μΌλ§ */
88
  .examples-section {
 
 
89
  width: 100%;
90
+ padding: 24px;
91
+ margin-top: 24px;
92
  }
93
 
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 {
 
115
  .right_panel {
116
  position: relative;
117
  min-height: 600px;
118
+ padding-top: 50px; /* Setting λ²„νŠΌμ„ μœ„ν•œ μ—¬λ°± */
119
  }
120
 
121
  .html_content {
 
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