+
+
+ Teams
+
+ -->
-
+
+
@@ -79,7 +80,7 @@ export default {
diff --git a/pages/dashboard/privacy.vue b/pages/dashboard/privacy.vue
index be108170a..ec6f82e3f 100644
--- a/pages/dashboard/privacy.vue
+++ b/pages/dashboard/privacy.vue
@@ -118,12 +118,6 @@ export default {
}
}
.consent-container {
- overflow-x: auto;
- max-height: 90vh;
-
- @media screen and (min-width: 900px) {
- max-height: 50vh;
- }
.h1 {
font-size: 2rem;
font-weight: bold;
diff --git a/pages/dashboard/settings.vue b/pages/dashboard/settings.vue
index c5fb6cf21..0ccedf6e4 100644
--- a/pages/dashboard/settings.vue
+++ b/pages/dashboard/settings.vue
@@ -232,35 +232,4 @@ section {
@extend %card;
padding: var(--spacing-card-md) var(--spacing-card-lg);
}
-
-label {
- display: flex;
-
- span {
- flex: 2;
- padding-right: var(--spacing-card-lg);
- }
-
- input {
- flex: 3;
- height: fit-content;
- }
- input[type='button'] {
- height: fit-content;
- flex: 1;
- }
- input[type='button']:hover {
- cursor: pointer;
- }
-
- div,
- a {
- text-align: center;
- height: fit-content;
- flex: 1;
- }
- div:hover {
- cursor: pointer;
- }
-}
diff --git a/pages/mod/_id/version/_version/index.vue b/pages/mod/_id/version/_version/index.vue
index ac3ca3896..90bfe1e28 100644
--- a/pages/mod/_id/version/_version/index.vue
+++ b/pages/mod/_id/version/_version/index.vue
@@ -408,6 +408,7 @@ export default {
.version-header {
display: flex;
align-items: center;
+ flex-wrap: wrap;
h4,
span {
@@ -416,9 +417,13 @@ export default {
.buttons {
display: flex;
- margin-left: auto;
+ align-self: flex-end;
- .action {
+ @media screen and (min-width: 1024px) {
+ margin-left: auto;
+ }
+
+ .action:not(:first-child) {
margin: 0 0 0 0.5rem;
}
}
diff --git a/pages/mod/create.vue b/pages/mod/create.vue
index 2f37538b0..021357e16 100644
--- a/pages/mod/create.vue
+++ b/pages/mod/create.vue
@@ -741,31 +741,6 @@ export default {
}
}
-label {
- display: flex;
-
- span {
- flex: 2;
- padding-right: var(--spacing-card-lg);
- }
-
- input,
- .multiselect,
- .input-group {
- flex: 3;
- height: fit-content;
- }
-}
-
-.input-group {
- display: flex;
- flex-direction: column;
-
- * {
- margin-bottom: var(--spacing-card-sm);
- }
-}
-
.textarea-wrapper {
display: flex;
flex-direction: column;
@@ -784,14 +759,31 @@ label {
grid-template:
'header header header' auto
'advert advert advert' auto
- 'essentials essentials mod-icon' auto
+ 'essentials essentials essentials' auto
+ 'mod-icon mod-icon mod-icon' auto
'game-sides game-sides game-sides' auto
'description description description' auto
'versions versions versions' auto
- 'extra-links license license' auto
- 'donations donations .' auto
+ 'extra-links extra-links extra-links' auto
+ 'license license license' auto
+ 'donations donations donations' auto
'footer footer footer' auto
/ 4fr 1fr 4fr;
+
+ @media screen and (min-width: 1024px) {
+ grid-template:
+ 'header header header' auto
+ 'advert advert advert' auto
+ 'essentials essentials mod-icon' auto
+ 'game-sides game-sides game-sides' auto
+ 'description description description' auto
+ 'versions versions versions' auto
+ 'extra-links license license' auto
+ 'donations donations .' auto
+ 'footer footer footer' auto
+ / 4fr 1fr 4fr;
+ }
+
column-gap: var(--spacing-card-md);
row-gap: var(--spacing-card-md);
}
diff --git a/pages/mods.vue b/pages/mods.vue
index 6e4ee893b..a3ca8686d 100644
--- a/pages/mods.vue
+++ b/pages/mods.vue
@@ -52,8 +52,9 @@
>
-
-
@@ -584,9 +588,10 @@ export default {
}
},
toggleFiltersMenu() {
- const filters = document.getElementById('filters')
- const currentlyActive = filters.className === 'filters active'
- filters.className = `filters${currentlyActive ? '' : ' active'}`
+ const currentlyActive = this.$refs.filters.className === 'filters active'
+ this.$refs.filters.className = `filters${
+ currentlyActive ? '' : ' active'
+ }`
document.body.style.overflow =
document.body.style.overflow !== 'hidden' ? 'hidden' : 'auto'
},
@@ -631,28 +636,26 @@ export default {
min-width: 200px;
}
.iconified-input {
- width: 100%;
+ width: auto;
+ margin-right: auto;
}
.sort-paginate {
margin-left: 0.5rem;
margin-right: 0.5rem;
display: flex;
- width: 100%;
+ width: auto;
.per-page {
margin-left: 0.5rem;
display: none;
}
}
- @media screen and (min-width: 900px) {
+ @media screen and (min-width: 1050px) {
flex-flow: row;
- .iconified-input {
- width: auto;
- }
.sort-paginate {
width: auto;
}
}
- @media screen and (min-width: 1024px) {
+ @media screen and (min-width: 450px) {
.sort-paginate {
.per-page {
display: unset;
@@ -667,22 +670,32 @@ export default {
justify-content: flex-end;
background: var(--color-raised-bg);
border-radius: var(--size-rounded-card);
- padding: 0.25rem 1rem 0.25rem 1rem;
+ padding: 0 1rem;
select {
width: 100px;
margin-right: 20px;
}
+ .per-page {
+ display: none;
+ }
+ @media screen and (min-width: 550px) {
+ padding: 0.25rem 1rem 0.25rem 1rem;
+ .per-page {
+ display: unset;
+ }
+ }
}
.labeled-control {
h3 {
@extend %small-label;
- margin-left: 0.5rem;
+ margin-left: 0.25rem;
}
}
.mobile-filters-button {
display: inline-block;
+ margin-left: 0.5rem;
button {
margin-top: 0;
height: 2.5rem;
@@ -691,7 +704,7 @@ export default {
}
// Hide button on larger screens where it's not needed
- @media screen and (min-width: 900px) {
+ @media screen and (min-width: 1250px) {
display: none;
}
}
@@ -720,7 +733,7 @@ export default {
right: 0;
}
// Larger screens that don't need to collapse
- @media screen and (min-width: 900px) {
+ @media screen and (min-width: 1250px) {
top: 0;
right: auto;
position: unset;
@@ -737,7 +750,7 @@ export default {
border-radius: var(--size-rounded-card);
}
}
- @media screen and (min-width: 1024px) {
+ @media screen and (min-width: 1250px) {
width: 300px;
}
}
@@ -752,13 +765,8 @@ export default {
justify-content: space-between;
}
- .filter-button-done {
- display: block;
- width: 100%;
- }
-
// Large screens that don't collapse
- @media screen and (min-width: 900px) {
+ @media screen and (min-width: 1250px) {
.filter-button-done {
display: none;
}
diff --git a/pages/user/_id.vue b/pages/user/_id.vue
index 2624a54e9..c39350505 100644
--- a/pages/user/_id.vue
+++ b/pages/user/_id.vue
@@ -56,7 +56,7 @@
-
+
@@ -76,6 +76,7 @@
:is-modrinth="true"
/>
+
@@ -194,7 +195,9 @@ export default {