webapp/src/components/Discours/Subscribe.module.scss

41 lines
617 B
SCSS
Raw Normal View History

2022-10-19 22:16:17 +00:00
.subscribeForm {
2022-09-09 11:53:35 +00:00
display: flex;
width: 100%;
2022-10-19 22:16:17 +00:00
@include media-breakpoint-between(md, xl) {
flex-direction: column;
}
2022-09-09 11:53:35 +00:00
input {
background: none;
border: none;
border-bottom: 1px solid;
color: #fff;
font-family: inherit;
@include font-size(2rem);
padding: 0.2em 0.5em 0.3em 0;
width: 100%;
&::placeholder {
color: #fff;
}
}
a {
align-items: center;
background: #fff;
border: none;
color: #000;
display: flex;
@include font-size(1.5rem);
padding: 0 0.5em;
}
button {
2022-10-19 22:16:17 +00:00
margin-top: 0;
2022-09-09 11:53:35 +00:00
padding-bottom: 0.8rem;
}
}