Fixed strange issues created by the merge
This commit is contained in:
parent
8f07350fa4
commit
abf85c32f1
|
@ -8,7 +8,7 @@
|
||||||
--editor: #ffffff;
|
--editor: #ffffff;
|
||||||
--text-color: #000000;
|
--text-color: #000000;
|
||||||
--border-color: #dadada;
|
--border-color: #dadada;
|
||||||
--theme-color: #592acb;
|
--theme-color: #1c71d8;
|
||||||
--theme-text-color: #ffffff;
|
--theme-text-color: #ffffff;
|
||||||
--exit-color: #e9e9e9;
|
--exit-color: #e9e9e9;
|
||||||
--session-color: #f4f4f4;
|
--session-color: #f4f4f4;
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
--editor: #202124;
|
--editor: #202124;
|
||||||
--text-color: #ffffff;
|
--text-color: #ffffff;
|
||||||
--border-color: #393b3d;
|
--border-color: #393b3d;
|
||||||
--theme-color: #592acb;
|
--theme-color: #3584e4;
|
||||||
--theme-text-color: #ffffff;
|
--theme-text-color: #ffffff;
|
||||||
--exit-color: #454649;
|
--exit-color: #454649;
|
||||||
--session-color: #2d2f31;
|
--session-color: #2d2f31;
|
||||||
|
@ -436,7 +436,7 @@ iframe#markdown {
|
||||||
border: none;
|
border: none;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: var(--theme-color);
|
background-color: var(--theme-color);
|
||||||
border-radius: 8px;
|
border-radius: 10px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
|
@ -460,7 +460,7 @@ iframe#markdown {
|
||||||
border: solid;
|
border: solid;
|
||||||
border-color: var(--border-color);
|
border-color: var(--border-color);
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
border-radius: 8px;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.optionsDiv .mfacheckbox {
|
.optionsDiv .mfacheckbox {
|
||||||
|
@ -594,8 +594,7 @@ iframe#markdown {
|
||||||
border: solid;
|
border: solid;
|
||||||
border-color: var(--border-color);
|
border-color: var(--border-color);
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
border-radius: 8px;
|
border-radius: 25px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.inoutdiv button {
|
.inoutdiv button {
|
||||||
|
@ -607,7 +606,7 @@ iframe#markdown {
|
||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
|
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 8px;
|
border-radius: 25px;
|
||||||
|
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|
||||||
|
@ -713,11 +712,17 @@ iframe#markdown {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.downloadDiv {
|
.hAlign {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.vAlign {
|
||||||
|
justify-content: center;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
.downloadDiv p {
|
.downloadDiv p {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
@ -734,8 +739,8 @@ iframe#markdown {
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
color: white;
|
color: white;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: #592ACB;
|
background-color: var(--theme-color);
|
||||||
border-radius: 12px;
|
border-radius: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mainDiv .burgerText {
|
.mainDiv .burgerText {
|
||||||
|
|
Reference in New Issue