Edit dividers
This commit is contained in:
parent
7aba18b56e
commit
e2b1064b1e
3 changed files with 21 additions and 10 deletions
|
@ -5,7 +5,7 @@
|
|||
<span class="hero-title__name" v-show="isVisible">Paul Nicoué</span>
|
||||
</Transition>
|
||||
<Transition name="expand-width">
|
||||
<span class="hero-title__separator" aria-hidden="true" v-show="isVisible"></span>
|
||||
<span class="hero-title__divider" aria-hidden="true" v-show="isVisible"></span>
|
||||
</Transition>
|
||||
<Transition name="fade-in-from-top">
|
||||
<span class="hero-title__job" v-show="isVisible">Intégrateur & développeur web</span>
|
||||
|
@ -43,7 +43,7 @@
|
|||
display: grid;
|
||||
grid:
|
||||
'name' auto
|
||||
'separator' auto
|
||||
'divider' auto
|
||||
'job' auto
|
||||
/ minmax(50%, auto);
|
||||
place-content: center;
|
||||
|
@ -56,11 +56,11 @@
|
|||
margin: 0 2rem;
|
||||
}
|
||||
|
||||
&__separator {
|
||||
grid-area: separator;
|
||||
&__divider {
|
||||
grid-area: divider;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
background-color: var(--primary-accent-color);
|
||||
background: linear-gradient(90deg, var(--primary-color), var(--primary-accent-color-light), var(--primary-color));
|
||||
}
|
||||
|
||||
&__job {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue