diff options
| author | Yuqian Yang <crupest@crupest.life> | 2025-01-22 17:55:46 +0800 | 
|---|---|---|
| committer | Yuqian Yang <crupest@crupest.life> | 2025-01-22 17:55:46 +0800 | 
| commit | 5e7f2177b6d489396cfa40f92b4d781f64f5db44 (patch) | |
| tree | 3e6c6158e9413949b9e13ab9cfb47d3811851da4 /docker | |
| parent | b32a039f732eb48acdc34d6f5801a17d548fdf79 (diff) | |
| download | crupest-5e7f2177b6d489396cfa40f92b4d781f64f5db44.tar.gz crupest-5e7f2177b6d489396cfa40f92b4d781f64f5db44.tar.bz2 crupest-5e7f2177b6d489396cfa40f92b4d781f64f5db44.zip | |
fix(www): slogan bug, close #32.
Diffstat (limited to 'docker')
| -rw-r--r-- | docker/nginx/sites/www/src/main.ts | 6 | ||||
| -rw-r--r-- | docker/nginx/sites/www/src/style.css | 8 | 
2 files changed, 4 insertions, 10 deletions
| diff --git a/docker/nginx/sites/www/src/main.ts b/docker/nginx/sites/www/src/main.ts index 043cb94..09e8661 100644 --- a/docker/nginx/sites/www/src/main.ts +++ b/docker/nginx/sites/www/src/main.ts @@ -3,7 +3,7 @@ import "./style.css";  class Emotion {    static opposite_map = new Map<Emotion, Emotion>(); -  constructor(public name: string) { +  constructor(public readonly name: string) {    }    get opposite(): Emotion { @@ -18,9 +18,6 @@ class Emotion {      return this.element.clientHeight;    } -  updateBodyTopPadding(): void { -  } -    apply() {      localStorage.setItem(emotionKey, this.name);      document.body.dataset.emotion = this.name; @@ -35,7 +32,6 @@ Emotion.opposite_map.set(angry, happy)  const emotionKey = "emotion";  const savedEmotionName = localStorage.getItem(emotionKey) ?? happy.name; -document.body.dataset.emotion = savedEmotionName;  for (const emotion of [happy, angry]) {    if (emotion.name == savedEmotionName) { diff --git a/docker/nginx/sites/www/src/style.css b/docker/nginx/sites/www/src/style.css index 4dae7ea..f2d4ccc 100644 --- a/docker/nginx/sites/www/src/style.css +++ b/docker/nginx/sites/www/src/style.css @@ -12,7 +12,6 @@ html {  body {    width: 100%;    margin: 0; -  box-sizing: border-box;    display: flex;    flex-direction: column;  } @@ -54,7 +53,7 @@ a {    to {      opacity: 1; -    transform: translateY(0); +    transform: translateX(0);    }  } @@ -68,10 +67,9 @@ a {  }  .slogan-container { -  width: 100%; -  position: fixed; -  z-index: 1; +  width: 100vw;    top: 0; +  position: fixed;  }  .slogan { | 
