42 lines
540 B
CSS
42 lines
540 B
CSS
#root {
|
|
padding: 0 !important;
|
|
font-family: "IBM Plex Sans", sans-serif;
|
|
}
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@import "~antd/dist/antd.css";
|
|
|
|
button {
|
|
@apply transition-all;
|
|
}
|
|
|
|
#titlebar {
|
|
-webkit-user-select: none;
|
|
-webkit-app-region: drag;
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
.titlebar-button {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.ant-avatar-group .ant-avatar {
|
|
border: none;
|
|
}
|
|
|
|
/* body {
|
|
background-color: #00000000;
|
|
}
|
|
|
|
html {
|
|
background-color: #00000000;
|
|
} */
|
|
|
|
.ant-modal-footer {
|
|
padding: 0 !important;
|
|
}
|