portfolio/src/components/molecules/ProjectLinks.module.scss

31 lines
490 B
SCSS
Raw Normal View History

2018-04-09 21:35:34 +02:00
@import 'variables';
2018-06-11 19:48:38 +02:00
.projectLinks {
2018-04-11 12:46:55 +02:00
ul {
padding: 0;
}
2018-04-09 21:35:34 +02:00
li {
2018-04-20 22:56:18 +02:00
display: flex;
align-items: center;
2018-11-24 15:02:32 +01:00
white-space: nowrap;
margin-bottom: $spacer / 2.1;
2018-04-09 21:35:34 +02:00
}
2018-07-14 19:22:38 +02:00
a {
display: block;
width: 100%;
2018-11-24 15:02:32 +01:00
text-transform: none;
text-align: left;
2018-07-14 19:22:38 +02:00
}
2019-11-12 22:20:34 +01:00
svg {
width: $font-size-small;
height: $font-size-small;
}
2018-04-09 21:35:34 +02:00
}
2018-06-11 19:48:38 +02:00
.title {
2018-10-17 20:26:08 +02:00
composes: metaTitle from '../../templates/Project.module.scss';
2018-06-11 19:48:38 +02:00
}