| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /* You can add global styles to this file, and also import other style files */
-
- html,
- body,
- app-root {
- height: 100%;
- width: 100%;
- margin: 0;
- padding: 0;
- }
-
- html {
- overflow: hidden;
- }
-
- body {
- user-select: none;
- cursor: default;
- background-color: rgb(23, 23, 23);
- display: flex;
- flex-direction: column;
- font: 13px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
- "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
- sans-serif;
- color: #333;
- &.isElectron {
- box-sizing: border-box;
- border-width: 1px;
- border-style: solid;
- box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 11px 3px;
- border-color: #3a3939;
- }
- &.hasFocus{
- border-color: rgb(154, 19, 19);
- }
- }
-
- // #content {
- // max-height: calc(100% - 32px);
- // overflow: auto;
- // }
|