diff --git a/src/assets/scss/fonts/_redaction.scss b/src/assets/scss/fonts/_redaction.scss
index 313e859..92c88b1 100644
--- a/src/assets/scss/fonts/_redaction.scss
+++ b/src/assets/scss/fonts/_redaction.scss
@@ -16,3 +16,11 @@ $font-styles: (
src: url('#{$location}/#{$font-slug}-#{$weight}-#{$style}.woff2') format('woff2');
}
}
+
+@font-face {
+ font-family: $font-name;
+ font-style: italic;
+ font-display: swap;
+ font-weight: 700;
+ src: url('#{$location}/#{$font-slug}-400-italic.woff2') format('woff2');
+}
diff --git a/src/components/formItems/MultipleTagsSelect.vue b/src/components/formItems/MultipleTagsSelect.vue
index 8985187..6e4d2e0 100644
--- a/src/components/formItems/MultipleTagsSelect.vue
+++ b/src/components/formItems/MultipleTagsSelect.vue
@@ -99,6 +99,8 @@ export default {
.b-form-tag-remove {
opacity: 1;
line-height: 0;
+ height: 15px;
+ text-shadow: none;
}
}
}
diff --git a/src/pages/gallery/GalleryMap.vue b/src/pages/gallery/GalleryMap.vue
index 654fee4..6334d3c 100644
--- a/src/pages/gallery/GalleryMap.vue
+++ b/src/pages/gallery/GalleryMap.vue
@@ -126,15 +126,15 @@ export default {
height: var(--max);
img {
- max-width: 100%;
- max-height: 100%;
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
margin: auto;
cursor: pointer;
}
- &.current {
+ &.current img {
border: 5px solid theme-color('creation');
- background-color: theme-color('creation');
}
}
}
diff --git a/src/pages/gallery/GalleryView.vue b/src/pages/gallery/GalleryView.vue
index 108f574..899b172 100644
--- a/src/pages/gallery/GalleryView.vue
+++ b/src/pages/gallery/GalleryView.vue
@@ -44,6 +44,7 @@
diff --git a/src/pages/library/LibraryMap.vue b/src/pages/library/LibraryMap.vue
index 25943bb..86215f8 100644
--- a/src/pages/library/LibraryMap.vue
+++ b/src/pages/library/LibraryMap.vue
@@ -6,7 +6,11 @@
>
node.data)
+ },
+
+ isSafari () {
+ return /^((?!chrome|android).)*safari/i.test(navigator.userAgent)
+ },
+
+ size () {
+ return window.innerWidth < 1200
+ ? { w: 560 / 1.5, h: 350 / 1.5 }
+ : { w: 560, h: 350 }
}
},
@@ -131,17 +145,25 @@ export default {