mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
f51a8ad6c6
git-diff seems to use `.octicon-font()`
36 lines
615 B
Plaintext
36 lines
615 B
Plaintext
@import "ui-variables";
|
|
@import "octicon-mixins";
|
|
|
|
//
|
|
// Octicon font
|
|
// --------------------------------------------------
|
|
|
|
@font-face { .octicon-font-legacy(); } // keep for backwards compatibility
|
|
@font-face { .octicon-font(); }
|
|
|
|
|
|
//
|
|
// Scaffolding
|
|
// --------------------------------------------------
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: border-box; // Reset the box-sizing
|
|
}
|
|
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
html {
|
|
font-family: @font-family;
|
|
font-size: @font-size;
|
|
line-height: 1.428571429; // 20/14
|
|
color: @text-color;
|
|
background-color: @app-background-color;
|
|
}
|