-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathApp.css
35 lines (32 loc) · 908 Bytes
/
App.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* (c) 2021, Micro:bit Educational Foundation and contributors
*
* SPDX-License-Identifier: MIT
*/
@font-face {
font-family: "Source Code Pro";
font-style: normal;
font-weight: 500;
src: local(""),
url("https://fonts.microbit.org/source-code-pro/v14/source-code-pro-v14-latin-500.woff2")
format("woff2"),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url("https://fonts.microbit.org/source-code-pro/v14/source-code-pro-v14-latin-500.woff")
format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
:root {
/* Seems to fix a Safari glitch: https://github.com/microbit-foundation/python-editor-v3/issues/369 */
font-size: 16px;
}
html,
body,
#root,
.WorkbenchContainer,
.Workbench {
width: 100%;
height: 100%;
/* 516px is the min height of the sidebar */
min-height: 516px;
/* 372px is the sidebar width + simulator width */
min-width: 372px;
}