20 lines
383 B
CSS
20 lines
383 B
CSS
|
|
/* Minimal resets for admin pages */
|
||
|
|
|
||
|
|
*, *::before, *::after {
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Make LiveView wrapper divs transparent for layout */
|
||
|
|
[data-phx-session], [data-phx-teleported-src] {
|
||
|
|
display: contents;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Phoenix LiveView loading states */
|
||
|
|
.phx-no-feedback.phx-no-feedback {
|
||
|
|
/* Suppress validation styles until form is interacted with */
|
||
|
|
}
|