Skip to content

Commit 5269393

Browse files
committed
Make footer larger. Ensure proper font-family.
1 parent 2adf44c commit 5269393

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

mystbin/frontend/components/MonacoEditor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default function MonacoEditor(
8484

8585
return (
8686
<ControlledEditor
87-
height="calc(90vh)"
87+
height="calc(82.5vh)"
8888
width="95%"
8989
value={value}
9090
theme={theme}

mystbin/frontend/styles/globals.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ html,
7474
body {
7575
padding: 0;
7676
margin: 0;
77-
font-family: "Whitney Medium", sans-serif;
77+
font-family: "Whitney Medium", sans-serif!important;
7878
height: 100%;
7979
width: 100%;
8080
overflow: hidden;
@@ -100,15 +100,16 @@ body .monaco-aria-container {
100100
border-top: 0.75rem solid #2b2b2b;
101101
padding-left: .5rem;
102102
background-color: #2b2b2b;
103+
max-height: calc(82.5vh + 0.75rem);
103104
}
104105

105106
.maxed > section {
106-
max-height: 85.5vh;
107+
max-height: 82.5vh;
107108
}
108109

109110
@media only screen and (max-width: 768px) {
110111
.maxed > section{
111-
max-height: calc(87.5vh - 6rem);
112+
max-height: calc(82.5vh - 6rem);
112113
}
113114
}
114115

0 commit comments

Comments
 (0)