blob: a121b681f090553b1d03f89b2ab4be659c0af381 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import styled from "styled-components";
export default styled.div`
width: 100%;
position: fixed;
left: 0px;
bottom: 0px;
text-align: center;
font-size: 12px;
span {
background-color: #e1e1e1;
}
`;
|