Update footer

pull/388/head
cagataycivici 2020-07-06 12:01:43 +03:00
parent f6d526ded3
commit a8b20d274b
2 changed files with 28 additions and 1 deletions

View File

@ -1,5 +1,20 @@
<template>
<div class="content-section layout-footer">
<span>PrimeVue 2.0.0-rc.3 by </span><a href="https://www.primetek.com.tr">PrimeTek</a>
<div class="layout-footer-left">
<span>PrimeVue 2.0.0 by </span>
<a href="https://www.primetek.com.tr">PrimeTek</a>
</div>
<div class="layout-footer-right">
<a href="https://github.com/primefaces/primevue" class="p-mr-3">
<i class="pi pi-github"></i>
</a>
<a href="https://twitter.com/primevue">
<i class="pi pi-twitter"></i>
</a>
</div>
</div>
</template>

View File

@ -1,9 +1,21 @@
.layout-footer {
font-size: 1rem;
background-color: var(--surface-a);
display: flex;
align-items: center;
justify-content: space-between;
a {
color: var(--text-color);
font-weight: 600;
}
.layout-footer-right {
a {
i {
color: var(--text-secondary-color);
font-size: 1.5rem;
}
}
}
}