13 lines
194 B
SCSS
13 lines
194 B
SCSS
|
.title-bar {
|
||
|
width: 100%;
|
||
|
height: 50px;
|
||
|
-webkit-user-select: none;
|
||
|
-webkit-app-region: drag;
|
||
|
position: fixed;
|
||
|
right: 0;
|
||
|
top: 0;
|
||
|
display: flex;
|
||
|
padding: 0;
|
||
|
cursor: pointer;
|
||
|
}
|