diff options
| author | zephex-alt <[email protected]> | 2024-04-30 04:08:49 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-30 04:08:49 +0000 |
| commit | b9059d978d2b86e15aa7c3846ef71fc62f711486 (patch) | |
| tree | 0833f1e05968f8f42ad2e736605af734e6bab30d /src/app/kdrama | |
| parent | late night fuckery (diff) | |
| download | dramalama-b9059d978d2b86e15aa7c3846ef71fc62f711486.tar.xz dramalama-b9059d978d2b86e15aa7c3846ef71fc62f711486.zip | |
small fixes
Diffstat (limited to 'src/app/kdrama')
| -rw-r--r-- | src/app/kdrama/styles/info.module.css | 5 | ||||
| -rw-r--r-- | src/app/kdrama/styles/kdrama.module.css | 2 | ||||
| -rw-r--r-- | src/app/kdrama/styles/loading.module.css | 6 | ||||
| -rw-r--r-- | src/app/kdrama/styles/popular.module.css | 5 | ||||
| -rw-r--r-- | src/app/kdrama/styles/search.module.css | 2 |
5 files changed, 10 insertions, 10 deletions
diff --git a/src/app/kdrama/styles/info.module.css b/src/app/kdrama/styles/info.module.css index d046ce4..edac191 100644 --- a/src/app/kdrama/styles/info.module.css +++ b/src/app/kdrama/styles/info.module.css @@ -98,7 +98,7 @@ .EpisodeButtons button:hover {
background-color: #1f1f1f;
- transition: background-color 0.2s linear
+ transition: background-color 0.2s linear;
}
.VideoContainer {
@@ -135,5 +135,4 @@ font-size: 14px;
width: 80px;
}
-
-}
\ No newline at end of file +}
diff --git a/src/app/kdrama/styles/kdrama.module.css b/src/app/kdrama/styles/kdrama.module.css index 9bb987c..f27060f 100644 --- a/src/app/kdrama/styles/kdrama.module.css +++ b/src/app/kdrama/styles/kdrama.module.css @@ -1,4 +1,4 @@ .Main {
max-width: 98%;
margin: 80px auto;
-}
\ No newline at end of file +}
diff --git a/src/app/kdrama/styles/loading.module.css b/src/app/kdrama/styles/loading.module.css index 011240e..825c247 100644 --- a/src/app/kdrama/styles/loading.module.css +++ b/src/app/kdrama/styles/loading.module.css @@ -10,12 +10,12 @@ height: 50px;
border-radius: 50%;
border: 8px solid;
- border-color: #F4F4F4 #0000;
+ border-color: #f4f4f4 #0000;
animation: s1 1s infinite;
}
@keyframes s1 {
to {
- transform: rotate(.5turn)
+ transform: rotate(0.5turn);
}
-}
\ No newline at end of file +}
diff --git a/src/app/kdrama/styles/popular.module.css b/src/app/kdrama/styles/popular.module.css index 85be40c..4fc8f18 100644 --- a/src/app/kdrama/styles/popular.module.css +++ b/src/app/kdrama/styles/popular.module.css @@ -44,7 +44,8 @@ margin: 4px;
background-color: #1f1f1fbb;
padding: 0.5rem;
- transition: opacity 200ms ease, transform 200ms ease, background-color 200ms ease;
+ transition: opacity 200ms ease, transform 200ms ease,
+ background-color 200ms ease;
cursor: grab;
border-radius: 1rem;
}
@@ -63,4 +64,4 @@ white-space: nowrap;
text-overflow: ellipsis;
margin: 0.5rem 0rem 0rem 0rem;
-}
\ No newline at end of file +}
diff --git a/src/app/kdrama/styles/search.module.css b/src/app/kdrama/styles/search.module.css index c1e9591..5b9c965 100644 --- a/src/app/kdrama/styles/search.module.css +++ b/src/app/kdrama/styles/search.module.css @@ -86,4 +86,4 @@ .Search {
max-width: 100%;
}
-}
\ No newline at end of file +}
|