diff options
| author | Ryan Mehri <[email protected]> | 2020-05-23 09:53:02 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-05-23 09:53:02 -0600 |
| commit | 128ed6ef43d960becfeaef96615aa06e16932195 (patch) | |
| tree | d81289bc118b006ddec2e9f7162f188e0d8f8ec8 /frontend/src/css | |
| parent | Merge pull request #29 from jackyzha0/order-langs (diff) | |
| parent | fix weird padding (diff) | |
| download | ctrl-v-128ed6ef43d960becfeaef96615aa06e16932195.tar.xz ctrl-v-128ed6ef43d960becfeaef96615aa06e16932195.zip | |
Merge pull request #30 from jackyzha0/latex-renderer
latex renderer live preview
Diffstat (limited to 'frontend/src/css')
| -rw-r--r-- | frontend/src/css/index.css | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/frontend/src/css/index.css b/frontend/src/css/index.css index c1b1813..9aa48e1 100644 --- a/frontend/src/css/index.css +++ b/frontend/src/css/index.css @@ -25,16 +25,6 @@ textarea, input[type=text], input[type=password], .Dropdown-root { margin: 1.7em 0; } -.codeBlock { - width: 100%; - font-size: 0.8em; - padding: calc(0.8em - 1px) !important; - border-radius: 3px; - border: 1px solid #565656; - outline: none; - margin: 1.7em 0; -} - .codeBlock code:first-child { margin-right: 10px; border-radius: 0; @@ -101,9 +91,9 @@ input[type=password] { } textarea { - height: 45vh; + height: max(45vh, 100%); resize: vertical; - min-height: 2em; + min-height: 45vh; } a { |