ranWang commited on
Commit
8c7e30d
1 Parent(s): c68d3fd

uodate problem rendered style

Browse files
Files changed (1) hide show
  1. app.css +15 -1
app.css CHANGED
@@ -150,7 +150,21 @@
150
  }
151
 
152
  .problem-input-markdown {
153
- padding: 8px;
154
  border: 1px solid rgba(0, 0, 0, 0.15);
155
  border-radius: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
  }
 
150
  }
151
 
152
  .problem-input-markdown {
153
+ padding-top: 18px;
154
  border: 1px solid rgba(0, 0, 0, 0.15);
155
  border-radius: 10px;
156
+ position: relative;
157
+ max-height: 380px;
158
+ overflow-y: auto;
159
+ }
160
+
161
+ .problem-input-markdown::before {
162
+ content: "Problem rendered";
163
+ border: 1px solid rgba(0, 0, 0, 0.15);
164
+ border-radius: 10px;
165
+ position: absolute;
166
+ left: 0;
167
+ top: 0;
168
+ border-right: 1px solid rgba(0, 0, 0, 0.15);
169
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
170
  }