Skip to content

Commit

Permalink
fix white theme
Browse files Browse the repository at this point in the history
  • Loading branch information
Adityasinh-Sodha authored Dec 27, 2024
1 parent 54cddfb commit 657fda4
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ body {
background-color: #fff;
}

#markdown-input {
background-color: #ffffff;
color: #333;
}


.editor-container.fullscreen #markdown-input,
.editor-container.fullscreen #preview {
width: 50%;
Expand Down Expand Up @@ -103,7 +109,7 @@ body {
display: flex;
justify-content: center;
align-items: center;
transition: all 0.3s ease;
transition: all 0.3s ease;
margin: auto;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
Expand All @@ -125,8 +131,8 @@ body {
overflow-y: auto;
border: none;
outline: none;
resize: none;
box-sizing: border-box;
resize: none;
box-sizing: border-box;
}


Expand All @@ -135,6 +141,8 @@ body {
pointer-events: none;
}



.top-toolbar {
position: fixed;
top: 0;
Expand All @@ -152,7 +160,7 @@ body {
}

.top-toolbar > * {
margin: 0;
margin: 0;
padding: 0;
}

Expand Down Expand Up @@ -301,7 +309,7 @@ body.dark-theme pre[class*="language-"] {
font-size: 16px;
background: rgba(250, 250, 250, 0.8);
line-height: 1.6;
background: #e0e0e0;
background: #ffffff;
color: #333;
}

Expand Down Expand Up @@ -470,3 +478,4 @@ body.dark-blue-theme #preview {
border: none;
opacity: 1;
}

0 comments on commit 657fda4

Please sign in to comment.