horizontal-list ui component

This commit is contained in:
Sérgio Ramos 2016-12-15 14:08:22 +00:00
parent ce2708239a
commit f02a4059f9
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,23 @@
const fns = require('../../shared/functions');
const Styled = require('styled-components');
const {
remcalc
} = fns;
const {
default: styled
} = Styled;
module.exports = styled.li`
display: inline-block;
margin-right: ${remcalc(10)};
padding-top: ${remcalc(10)};
padding-bottom: ${remcalc(10)};
& a.active {
cursor: default;
color: #373A3C;
text-decoration: none;
}
`;

View File

@ -0,0 +1,9 @@
const Styled = require('styled-components');
const {
default: styled
} = Styled;
module.exports = styled.ul`
list-style-type: none;
`;