primevue-mirror/assets/styles/layout/_footer.scss

25 lines
529 B
SCSS
Raw Normal View History

2023-02-28 08:29:30 +00:00
.layout-footer {
2023-10-12 09:58:41 +00:00
padding: 2rem 4rem;
2023-02-28 08:29:30 +00:00
margin-top: 4rem;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
font-weight: 500;
color: var(--text-800);
border-top: 1px solid var(--surface-border);
a {
color: var(--primary-color);
font-weight: 700;
2023-10-13 22:09:30 +00:00
transition: all .3s;
border-radius: var(--border-radius);
@include focus-visible();
2023-02-28 08:29:30 +00:00
&:hover {
text-decoration: underline;
}
2023-10-13 22:09:30 +00:00
2023-02-28 08:29:30 +00:00
}
}