18 lines
247 B
CSS
18 lines
247 B
CSS
.gitHubButton {
|
|
position: fixed;
|
|
top: 12px;
|
|
right: 12px;
|
|
}
|
|
|
|
@media screen and (max-width: 900px) {
|
|
.gitHubButton {
|
|
position: absolute;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 500px) {
|
|
.gitHubButton {
|
|
top: 8px;
|
|
right: 8px;
|
|
}
|
|
}
|