minor UI fixes

This commit is contained in:
lostdesign
2019-10-25 12:11:05 +02:00
parent 42eabe0cc9
commit dad7abbbaf
2 changed files with 11 additions and 7 deletions

View File

@@ -15,7 +15,7 @@ export default {
props: { props: {
resource: Object, resource: Object,
isActive: Boolean, isActive: Boolean,
createCopyUrl: Function, createCopyUrl: Function,
}, },
} }
</script> </script>
@@ -37,13 +37,15 @@ export default {
&--meta { &--meta {
display: flex; display: flex;
align-items: center; justify-content: flex-start;
} }
&--favicon { &--favicon {
height: 16px; height: 16px;
width: 16px; width: 16px;
margin-right: .5rem; margin-top: 0.3rem;
margin-right: 0.5rem;
} }
&--reference { &--reference {

View File

@@ -8,7 +8,7 @@
.cookie .cookie
p This site uses cookies, please read our&nbsp; p This site uses cookies, please read our&nbsp;
nuxt-link.highlighted(to="privacy-policy") Privacy policy. nuxt-link.highlighted(to="privacy-policy") Privacy policy.
button(@click.preventDefault="hideCookieNotice") X button.highlighted(@click.preventDefault="hideCookieNotice" type="button") X
nuxt.content nuxt.content
</template> </template>
@@ -116,10 +116,12 @@ h1 {
.layout { .layout {
display: grid; display: grid;
grid-template-columns: fit-content(200px) auto; grid-template-columns: fit-content(200px) auto;
grid-gap: 1rem; grid-gap: 3rem;
grid-template-areas: grid-template-areas:
'logo .' 'logo .'
'sidebar content'; 'sidebar content';
max-width: 1200px;
margin: 0 auto;
} }
.logo { .logo {
@@ -212,6 +214,7 @@ h1 {
padding: 0 1rem; padding: 0 1rem;
border-radius: .3rem; border-radius: .3rem;
box-shadow:inset 0px 0px 0px 2px #08e5ff; box-shadow:inset 0px 0px 0px 2px #08e5ff;
z-index: 999;
p { p {
font-size: 12px; font-size: 12px;
@@ -228,10 +231,9 @@ h1 {
} }
button { button {
color: #fff;
background: none;
border: none; border: none;
margin-left: .8rem; margin-left: .8rem;
cursor: pointer;
} }
} }