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

48 lines
745 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-11-20 21:23:12 +00:00
@include media-breakpoint-down(md) {
margin-bottom: 2.4rem;
}
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 {
2023-05-01 18:32:32 +00:00
@include font-size(2rem);
2022-09-09 11:53:35 +00:00
background: none;
border: none;
border-bottom: 1px solid;
color: #fff;
font-family: inherit;
2022-11-02 21:43:38 +00:00
margin: 0;
overflow: hidden;
text-overflow: ellipsis;
2022-09-09 11:53:35 +00:00
padding: 0.2em 0.5em 0.3em 0;
width: 100%;
&::placeholder {
color: #fff;
}
}
a {
2023-05-01 18:32:32 +00:00
@include font-size(1.5rem);
2022-09-09 11:53:35 +00:00
align-items: center;
background: #fff;
border: none;
color: #000;
display: flex;
padding: 0 0.5em;
}
2022-11-02 21:43:38 +00:00
.button {
border-radius: 0;
margin: 0;
2022-09-09 11:53:35 +00:00
}
}