remove unnecessary CSS and !importants
This commit is contained in:
parent
6aa5301d89
commit
69a40df606
7 changed files with 32 additions and 61 deletions
|
@ -47,10 +47,6 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.button {
|
|
||||||
border-radius: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content li .fileIcon {
|
.content li .fileIcon {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-right: var(--gap-half);
|
margin-right: var(--gap-half);
|
||||||
|
|
|
@ -105,12 +105,6 @@
|
||||||
content: "";
|
content: "";
|
||||||
}
|
}
|
||||||
|
|
||||||
.markdownPreview code {
|
|
||||||
border-radius: 3px;
|
|
||||||
white-space: pre-wrap;
|
|
||||||
word-wrap: break-word;
|
|
||||||
color: inherit !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.markdownPreview code::before,
|
.markdownPreview code::before,
|
||||||
.markdownPreview code::after {
|
.markdownPreview code::after {
|
||||||
|
|
|
@ -1,54 +1,49 @@
|
||||||
.container {
|
.container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container ul {
|
.container ul {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-top: var(--gap-double);
|
margin-top: var(--gap-double);
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropzone {
|
.dropzone {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
border: 2px dashed var(--border) !important;
|
border: 2px dashed var(--border);
|
||||||
outline: none;
|
outline: none;
|
||||||
transition: all 0.14s ease-in-out;
|
cursor: pointer;
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dropzone:hover {
|
|
||||||
border-color: var(--gray) !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropzone:focus {
|
.dropzone:focus {
|
||||||
box-shadow: 0 0 4px 1px rgba(124, 124, 124, 0.5);
|
border-color: var(--gray);
|
||||||
}
|
}
|
||||||
|
|
||||||
.error {
|
.error {
|
||||||
color: red;
|
color: red;
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
transition: border 0.14s ease-in-out;
|
transition: border 0.14s ease-in-out;
|
||||||
border: 2px solid red;
|
border: 2px solid red;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.error ul {
|
.error ul {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding-left: var(--gap-double);
|
padding-left: var(--gap-double);
|
||||||
}
|
}
|
||||||
|
|
||||||
.verb:after {
|
.verb:after {
|
||||||
content: "click";
|
content: "click";
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (hover: none) {
|
@media (hover: none) {
|
||||||
.verb:after {
|
.verb:after {
|
||||||
content: "tap";
|
content: "tap";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,11 +19,6 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fileNameContainer > div {
|
|
||||||
/* Override geist-ui styling */
|
|
||||||
margin: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.textarea {
|
.textarea {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,9 +53,8 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.active,
|
.tabs .active {
|
||||||
.active {
|
color: var(--fg);
|
||||||
color: var(--fg) !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.buttonGroup,
|
.buttonGroup,
|
||||||
|
|
|
@ -46,15 +46,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.files {
|
|
||||||
padding: var(--gap) 0 !important;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.files li {
|
.files li {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: var(--gap);
|
gap: var(--gap);
|
||||||
|
padding: var(--gap-quarter);
|
||||||
}
|
}
|
||||||
|
|
||||||
.files li a {
|
.files li a {
|
||||||
|
|
|
@ -80,8 +80,8 @@
|
||||||
|
|
||||||
::selection {
|
::selection {
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
background: var(--fg) !important;
|
background: var(--fg);
|
||||||
color: var(--bg) !important;
|
color: var(--bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
html,
|
html,
|
||||||
|
@ -129,7 +129,7 @@ a.reset {
|
||||||
|
|
||||||
pre,
|
pre,
|
||||||
code {
|
code {
|
||||||
font-family: var(--font-mono) !important;
|
font-family: var(--font-mono);
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
|
@ -157,10 +157,6 @@ hr {
|
||||||
--name: #333;
|
--name: #333;
|
||||||
--highlight: #eaeaea;
|
--highlight: #eaeaea;
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
|
||||||
text-shadow: none !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#root,
|
#root,
|
||||||
|
|
Loading…
Reference in a new issue