feat: update user

This commit is contained in:
Nick
2019-08-17 18:29:58 -04:00
parent 379d58d069
commit 823ff1bc61
14 changed files with 255 additions and 65 deletions

View File

@@ -47,15 +47,15 @@
.caption.red--text {{$t('common:page.unpublished')}}
status-indicator.ml-3(negative, pulse)
v-divider
v-toolbar.px-2(:color='darkMode ? `grey darken-4-l3` : `grey lighten-4`', flat, :height='90')
div(style='padding-left: 376px;')
.headline.grey--text(:class='darkMode ? `text--lighten-2` : `text--darken-3`') {{title}}
.caption.grey--text.text--darken-1 {{description}}
v-spacer
v-container.grey.pa-0(fluid, :class='darkMode ? `darken-4-l3` : `lighten-4`')
v-row(no-gutters, align-content='center', style='height: 90px;')
v-col.pl-4(offset-xl='2', offset-lg='3')
.headline.grey--text(:class='darkMode ? `text--lighten-2` : `text--darken-3`') {{title}}
.caption.grey--text.text--darken-1 {{description}}
v-divider
v-container.pl-5.pt-2(fill-height, fluid, grid-list-xl)
v-container.pl-5.pt-4(fluid, grid-list-xl)
v-layout(row)
v-flex.page-col-sd(lg3, xl2, fill-height, v-if='$vuetify.breakpoint.lgAndUp', style='margin-top: -90px;')
v-flex.page-col-sd(lg3, xl2, v-if='$vuetify.breakpoint.lgAndUp', style='margin-top: -90px;')
v-card(v-if='toc.length')
.overline.pa-5.pb-0(:class='darkMode ? `blue--text text--lighten-2` : `primary--text`') {{$t('common:page.toc')}}
v-list.pb-3(dense, nav, :class='darkMode ? `darken-3-d3` : ``')

View File

@@ -25,6 +25,16 @@
h1, h2, h3, h4, h5, h6 {
position: relative;
&:before {
display: block;
content: " ";
width: 1px;
margin-top: -75px;
height: 75px;
visibility: hidden;
z-index: -1;
}
&:first-child {
padding-top: 0;
}
@@ -84,7 +94,6 @@
}
h2 {
margin: 1rem 0 0 0;
padding: 8px 0 0 0;
color: mc('grey', '800');
position: relative;
@@ -114,8 +123,7 @@
}
}
h3 {
margin: 0;
padding: 8px 0 0 0;
margin: 8px 0 0 0;
color: mc('grey', '700');
position: relative;
@@ -135,8 +143,7 @@
}
h4, h5, h6 {
font-size: 1rem;
margin: 0;
padding: 8px 0 0 0;
margin: 8px 0 0 0;
color: mc('grey', '700');
position: relative;
@@ -165,19 +172,6 @@
}
}
// scroll offset fix
h1:before, h2:before, h3:before, h4:before, h5:before, h6:before {
display: block;
content: " ";
width: 1px;
height: 1px;
margin-top: -75px;
height: 75px;
visibility: hidden;
z-index: -1;
}
// ---------------------------------
// PARAGRAPHS
// ---------------------------------