diff --git a/composables/cosmetics.js b/composables/cosmetics.js
index b715e792d..4ff876aff 100644
--- a/composables/cosmetics.js
+++ b/composables/cosmetics.js
@@ -25,7 +25,6 @@ export const useCosmetics = () =>
datapack: 'list',
user: 'list',
},
- hideBetaPrompt: false,
}
}
diff --git a/layouts/default.vue b/layouts/default.vue
index 6597dc407..d1548758a 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -242,12 +242,6 @@
-
@@ -1082,55 +1076,5 @@ export default defineNuxtComponent({
}
}
}
-.beta-prompt {
- position: fixed;
- bottom: 0;
- right: 0;
- display: flex;
- flex-direction: row;
- justify-content: center;
- background-color: #002B4B;
- border-radius: 0;
- border: 1px solid #14679E;
- font-family: serif;
- color: white;
- font-size: 1.5rem;
- font-weight: bold;
- gap: 1rem;
- flex-wrap: wrap;
- max-width: 20rem;
- z-index: 100;
- margin: 1rem;
-
- .colored {
- color: #BDA9FF;
- }
-
- .iconified-button, .square-button {
- background-color: #00111e;
- border-radius: 0;
- color: white;
- flex-shrink: 0;
-
- &.primary {
- background-color: #7EFFAD;
- color: black;
- }
- }
-
- .square-button {
- background-color: transparent;
-
- &:hover, &:active {
- background-color: rgba(0, 17, 30, 0.3);
- }
- }
-}
-
-@media screen and (max-width: 1024px) {
- .beta-prompt {
- display: none;
- }
-}