DDG doesn't seem to work in "production" for some reason, while it works perfectly fine locally :/
15 lines
203 B
SCSS
15 lines
203 B
SCSS
#qrcode {
|
|
background-color: white;
|
|
float: right;
|
|
height: 150px;
|
|
margin: 3rem 0 0 1rem;
|
|
padding: 12.5px;
|
|
width: 150px;
|
|
|
|
@media only screen and (max-width: 720px) {
|
|
& {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|