bravo68web-portfolio-nextjs/components/footer.style.jsx

26 lines
463 B
React
Raw Permalink Normal View History

2022-01-05 06:31:08 +00:00
import styled from "styled-components";
export default styled.div`
2023-06-12 08:03:13 +00:00
height: 50px;
width: 100vw;
position: fixed;
left: 0;
bottom: 0;
background: var(--color1);
display: flex;
justify-content: center;
2023-11-27 14:36:33 +00:00
/* filter: blur("5px"); */
2023-06-12 08:03:13 +00:00
.main-footer {
display: flex;
justify-content: center;
align-items: center;
font-size: 1.2rem;
.api-status {
justify-content: right;
align-items: right;
font-size: 1.2rem;
padding-bottom: 20px;
}
}
2022-01-05 06:31:08 +00:00
`;