diff --git a/src/components/home/update.vue b/src/components/home/update.vue index 1bbb99084..d61070594 100644 --- a/src/components/home/update.vue +++ b/src/components/home/update.vue @@ -47,3 +47,42 @@ export default { }, } + + \ No newline at end of file diff --git a/src/styles/theme/_index.scss b/src/styles/theme/_index.scss index 43bacb892..ceb59c674 100644 --- a/src/styles/theme/_index.scss +++ b/src/styles/theme/_index.scss @@ -8,5 +8,4 @@ @import "loading"; @import "navigation"; @import "notification"; -@import "update-notification"; @import "background"; \ No newline at end of file diff --git a/src/styles/theme/update-notification.scss b/src/styles/theme/update-notification.scss deleted file mode 100644 index 36cda4225..000000000 --- a/src/styles/theme/update-notification.scss +++ /dev/null @@ -1,40 +0,0 @@ -.update-notification { - margin: 1rem; - display: flex; - align-items: center; - background: $warning; - padding: 0 0 0 .5rem; - border-radius: $radius; - font-size: .9rem; - color: $grey-900; - justify-content: space-between; - - @media screen and (max-width: $desktop) { - & { - position: fixed; - bottom: 1rem; - margin: 0; - width: 450px; - left: calc(50vw - 225px); - } - } - - @media screen and (max-width: $tablet) { - & { - position: fixed; - left: 1rem; - right: 1rem; - bottom: 1rem; - width: auto; - } - } - - p { - text-align: center; - width: 100%; - } - - .button { - margin-left: .5rem; - } -}