seawolf2357 commited on
Commit
be9a586
ยท
verified ยท
1 Parent(s): f250e05

Update app.css

Browse files
Files changed (1) hide show
  1. app.css +40 -39
app.css CHANGED
@@ -72,74 +72,75 @@ footer, .footer, div[class*="footer"], #footer {
72
  min-height: 300px !important;
73
  }
74
 
75
- /* Setting ๋ฒ„ํŠผ ์ปจํ…Œ์ด๋„ˆ */
76
- .setting-buttons-container {
77
- position: absolute;
78
- top: 10px;
79
- right: 10px;
80
- z-index: 1000;
81
  padding: 10px;
 
 
 
 
82
  }
83
 
84
- /* Examples ์„น์…˜ */
85
- .examples-container {
86
  margin-top: 24px;
87
  padding: 0 24px;
88
  width: 100%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  }
90
 
 
91
  .right_panel {
92
  position: relative;
93
  min-height: 600px;
 
 
 
 
94
  }
95
 
96
  .html_content {
97
  height: 100%;
98
  }
99
 
100
- /* ๋ฐ˜์‘ํ˜• ๊ทธ๋ฆฌ๋“œ๋ฅผ ์œ„ํ•œ ๋ฏธ๋””์–ด ์ฟผ๋ฆฌ */
101
  @media (max-width: 768px) {
102
- .examples-container .ant-col {
103
  flex: 0 0 100%;
104
  max-width: 100%;
105
  }
106
  }
107
 
108
  @media (min-width: 769px) and (max-width: 1200px) {
109
- .examples-container .ant-col {
110
  flex: 0 0 50%;
111
  max-width: 50%;
112
  }
113
  }
114
 
115
- @media (min-width: 1201px) {
116
- .examples-container .ant-col {
117
- flex: 0 0 33.333333%;
118
- max-width: 33.333333%;
119
- }
120
- }
121
-
122
- /* Examples ์นด๋“œ ์Šคํƒ€์ผ๋ง */
123
- .examples-container .ant-card {
124
- margin-bottom: 16px;
125
- height: 100%;
126
- }
127
-
128
- .examples-container .ant-card-meta {
129
- padding: 12px;
130
- }
131
-
132
- /* Setting ๋ฒ„ํŠผ ์Šคํƒ€์ผ๋ง */
133
- .setting-buttons-container .ant-btn {
134
- margin-left: 8px;
135
- }
136
-
137
- /* ์ „์ฒด ๋ ˆ์ด์•„์›ƒ ์กฐ์ • */
138
- .ant-row {
139
- margin-right: 0 !important;
140
- margin-left: 0 !important;
141
- }
142
-
143
  .main-content {
144
  margin-bottom: 24px;
145
  }
 
72
  min-height: 300px !important;
73
  }
74
 
75
+ /* Setting ๋ฒ„ํŠผ ๊ด€๋ จ ์Šคํƒ€์ผ ์ˆ˜์ • */
76
+ .setting-buttons-row {
 
 
 
 
77
  padding: 10px;
78
+ margin-bottom: 10px;
79
+ background: transparent;
80
+ position: relative;
81
+ z-index: 1000;
82
  }
83
 
84
+ /* Examples ์„น์…˜ ์Šคํƒ€์ผ ์ˆ˜์ • */
85
+ .examples-section {
86
  margin-top: 24px;
87
  padding: 0 24px;
88
  width: 100%;
89
+ display: flex;
90
+ flex-direction: column;
91
+ }
92
+
93
+ .examples-section .ant-row {
94
+ display: flex;
95
+ flex-wrap: wrap;
96
+ margin: 0 -8px;
97
+ }
98
+
99
+ .examples-section .ant-col {
100
+ padding: 0 8px;
101
+ margin-bottom: 16px;
102
+ flex: 0 0 33.333333%;
103
+ max-width: 33.333333%;
104
+ }
105
+
106
+ .examples-section .ant-card {
107
+ height: 100%;
108
+ margin-bottom: 0;
109
+ }
110
+
111
+ .examples-section .ant-card-meta {
112
+ padding: 12px;
113
  }
114
 
115
+ /* ์šฐ์ธก ํŒจ๋„ ์Šคํƒ€์ผ ์ˆ˜์ • */
116
  .right_panel {
117
  position: relative;
118
  min-height: 600px;
119
+ border: 1px solid #e8e8e8;
120
+ border-radius: 4px;
121
+ overflow: hidden;
122
+ margin-top: 60px; /* Setting ๋ฒ„ํŠผ์„ ์œ„ํ•œ ์—ฌ๋ฐฑ */
123
  }
124
 
125
  .html_content {
126
  height: 100%;
127
  }
128
 
129
+ /* ๋ฐ˜์‘ํ˜• ๋ ˆ์ด์•„์›ƒ์„ ์œ„ํ•œ ๋ฏธ๋””์–ด ์ฟผ๋ฆฌ */
130
  @media (max-width: 768px) {
131
+ .examples-section .ant-col {
132
  flex: 0 0 100%;
133
  max-width: 100%;
134
  }
135
  }
136
 
137
  @media (min-width: 769px) and (max-width: 1200px) {
138
+ .examples-section .ant-col {
139
  flex: 0 0 50%;
140
  max-width: 50%;
141
  }
142
  }
143
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  .main-content {
145
  margin-bottom: 24px;
146
  }