diff --git a/src/client/app.vue b/src/client/app.vue index 48df0b9aa..df571f824 100644 --- a/src/client/app.vue +++ b/src/client/app.vue @@ -975,17 +975,18 @@ export default Vue.extend({ > main { width: $main-width; min-width: $main-width; + box-shadow: 1px 0 0 0 var(--shadow), -1px 0 0 0 var(--shadow); @media (max-width: $side-hide-threshold) { min-width: 0; } > .content { - padding: 16px; + padding: 16px 0; box-sizing: border-box; @media (max-width: 500px) { - padding: 8px; + padding: 8px 0; } } @@ -1023,6 +1024,7 @@ export default Vue.extend({ > .widgets { box-sizing: border-box; + margin-left: var(--margin); @media (max-width: $side-hide-threshold) { display: none; diff --git a/src/client/components/date-separated-list.vue b/src/client/components/date-separated-list.vue index 53fd0a7c7..10f6dea51 100644 --- a/src/client/components/date-separated-list.vue +++ b/src/client/components/date-separated-list.vue @@ -76,10 +76,6 @@ export default Vue.extend({ transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1); } - > .list-enter-active { - transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1); - } - &[data-direction="up"] { > .list-enter { opacity: 0; @@ -109,8 +105,6 @@ export default Vue.extend({ line-height: 32px; text-align: center; font-size: 12px; - border-radius: 64px; - background: var(--dateLabelBg); color: var(--dateLabelFg); > span { diff --git a/src/client/components/notes.vue b/src/client/components/notes.vue index dc93c1f6c..9bbde6293 100644 --- a/src/client/components/notes.vue +++ b/src/client/components/notes.vue @@ -111,7 +111,8 @@ export default Vue.extend({ &.max-width_500px { > .notes { > ::v-deep *:not(:last-child) { - margin-bottom: var(--marginHalf); + //margin-bottom: var(--marginHalf); + margin-bottom: 0; } } } diff --git a/src/client/components/notifications.vue b/src/client/components/notifications.vue index ff6d63821..f090dc6bc 100644 --- a/src/client/components/notifications.vue +++ b/src/client/components/notifications.vue @@ -1,8 +1,8 @@ -
+
@@ -148,11 +148,5 @@ export default define({ flex-grow: 1; } } - - .tl { - padding: 8px; - background: var(--bg); - box-sizing: border-box; - } }