49 lines
685 B
CSS
49 lines
685 B
CSS
@import "~antd/dist/antd.css";
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
}
|
|
|
|
#root {
|
|
@apply flex flex-col flex-1;
|
|
padding: 0 !important;
|
|
font-family: "IBM Plex Sans", sans-serif;
|
|
}
|
|
|
|
/* button {
|
|
@apply transition-all;
|
|
} */
|
|
|
|
#titlebar {
|
|
-webkit-user-select: none;
|
|
-webkit-app-region: drag;
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* TODO: temporary...remove? later? */
|
|
/* body {
|
|
-webkit-user-select: none;
|
|
-webkit-app-region: drag;
|
|
|
|
cursor: pointer;
|
|
} */
|
|
|
|
.titlebar-button {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.ant-avatar-group .ant-avatar {
|
|
border: none;
|
|
}
|
|
|
|
.ant-modal-footer {
|
|
padding: 0 !important;
|
|
}
|