webapp/src/components/Discours/Subscribe.module.scss
2022-10-20 01:16:17 +03:00

41 lines
617 B
SCSS

.subscribeForm {
display: flex;
width: 100%;
@include media-breakpoint-between(md, xl) {
flex-direction: column;
}
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 {
margin-top: 0;
padding-bottom: 0.8rem;
}
}