mirror of
https://github.com/He4eT/elseifplayer.git
synced 2026-05-05 01:17:22 +00:00
Views: replace css files with scss modules
This commit is contained in:
parent
40a6e7eb3a
commit
ae9456d6dd
17 changed files with 147 additions and 141 deletions
|
|
@ -3,7 +3,7 @@ import { Link } from 'wouter-preact'
|
|||
import * as s from './Status.module.scss'
|
||||
|
||||
const fail = (details) => (
|
||||
<div className={[s.status, s.fail].join(' ')}>
|
||||
<div className={[s.status].join(' ')}>
|
||||
<h1>
|
||||
Error
|
||||
</h1>
|
||||
|
|
|
|||
|
|
@ -6,8 +6,12 @@
|
|||
}
|
||||
|
||||
.status {
|
||||
padding: var(--inner-padding);
|
||||
word-break: break-word;
|
||||
padding-block: var(--inner-padding);
|
||||
|
||||
@media (max-width: 800px) {
|
||||
padding: var(--inner-padding);
|
||||
}
|
||||
|
||||
&.loading > div:after {
|
||||
animation: dots0123 1s infinite;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue