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

25 lines
539 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);
2024-02-07 22:44:27 +00:00
border-top: 1px solid var(--surface-border);
2023-02-28 08:29:30 +00:00
a {
color: var(--primary-color-default);
2023-02-28 08:29:30 +00:00
font-weight: 700;
2023-10-13 22:09:30 +00:00
transition: all .3s;
2024-02-07 12:14:37 +00:00
border-radius: var(--p-border-radius);
2023-10-13 22:09:30 +00:00
@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
}
}