diff options
| author | Pitu <[email protected]> | 2020-12-27 20:17:28 +0900 |
|---|---|---|
| committer | Pitu <[email protected]> | 2020-12-27 20:17:28 +0900 |
| commit | 24edf8f4fde96500e9cb23806f4826904144ebc8 (patch) | |
| tree | ca59c77831cfbfed0ba3848af7c0a399c2cc73f4 /src | |
| parent | Update admin password to be random (diff) | |
| download | host.fuwn.me-24edf8f4fde96500e9cb23806f4826904144ebc8.tar.xz host.fuwn.me-24edf8f4fde96500e9cb23806f4826904144ebc8.zip | |
fix: mobile styling
Diffstat (limited to 'src')
| -rw-r--r-- | src/site/assets/styles/style.scss | 7 | ||||
| -rw-r--r-- | src/site/components/footer/Footer.vue | 7 | ||||
| -rw-r--r-- | src/site/pages/index.vue | 6 |
3 files changed, 16 insertions, 4 deletions
diff --git a/src/site/assets/styles/style.scss b/src/site/assets/styles/style.scss index 3b3fa8b..1152f43 100644 --- a/src/site/assets/styles/style.scss +++ b/src/site/assets/styles/style.scss @@ -405,3 +405,10 @@ table.table { .dropdown-content a { text-decoration: none; } + +.button { + color: $textColor; + &:hover { + color: white; + } +} diff --git a/src/site/components/footer/Footer.vue b/src/site/components/footer/Footer.vue index 7d65505..38e3f07 100644 --- a/src/site/components/footer/Footer.vue +++ b/src/site/components/footer/Footer.vue @@ -83,9 +83,10 @@ export default { .container { .column { - margin-right: 2rem; - &.bottom-up { - @media screen and (min-width: 1025px) { + text-align: center; + @media screen and (min-width: 1025px) { + margin-right: 2rem; + &.bottom-up { display: flex; flex-direction: column; justify-content: flex-end; diff --git a/src/site/pages/index.vue b/src/site/pages/index.vue index 2385021..8bdd23d 100644 --- a/src/site/pages/index.vue +++ b/src/site/pages/index.vue @@ -89,8 +89,12 @@ export default { .leftSpacer { width: 100%; .mainBlock { + height: auto; + padding: 2rem 0; > div { - top: 5rem; + top: 0rem; + position: relative; + text-align: center; } } } |