2023-08-31 09:47:59 -04:00
|
|
|
/*
|
|
|
|
Some CSS cannot be represented
|
|
|
|
in Tailwind, such as complex grid layouts.
|
|
|
|
*/
|
|
|
|
.header {
|
|
|
|
grid-template-columns: 1fr auto 1fr;
|
2024-08-25 12:56:11 -07:00
|
|
|
-webkit-app-region: drag; /* Make the header of the app draggable */
|
|
|
|
}
|
|
|
|
|
|
|
|
.header button {
|
|
|
|
-webkit-app-region: no-drag; /* Make the button not draggable */
|
|
|
|
}
|
|
|
|
|
|
|
|
.header a {
|
|
|
|
-webkit-app-region: no-drag; /* Make the link not draggable */
|
|
|
|
}
|
|
|
|
|
|
|
|
.header textarea {
|
|
|
|
-webkit-app-region: no-drag; /* Make the textarea not draggable */
|
|
|
|
}
|
|
|
|
|
|
|
|
.header input {
|
|
|
|
-webkit-app-region: no-drag; /* Make the input not draggable */
|
2023-08-31 09:47:59 -04:00
|
|
|
}
|