13 lines
209 B
CSS
13 lines
209 B
CSS
.wrapper {
|
|
background-color: rgb(247, 247, 247);
|
|
padding: 30px;
|
|
text-align: right;
|
|
border-radius: 0 30px 30px 0;
|
|
}
|
|
|
|
@media only screen and (max-width: 950px) {
|
|
.wrapper {
|
|
border-radius: 0;
|
|
}
|
|
}
|