main
css 15 lines 359 Bytes
Raw
1 .InspectedElementPane, .InspectedElementPane * {
2 box-sizing: border-box;
3 -webkit-font-smoothing: var(--font-smoothing);
4 }
5
6 .InspectedElementPane {
7 position: relative;
8 width: 100%;
9 height: 100%;
10 display: flex;
11 flex-direction: row;
12 background-color: var(--color-background);
13 color: var(--color-text);
14 font-family: var(--font-family-sans);
15 }