-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 #982 - fix: fix invisibility of focussed skiplink.
- Loading branch information
1 parent
36f48ef
commit e4dd24d
Showing
9 changed files
with
128 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
@import '../../settings/all'; | ||
@import "microscope-sass/lib/color"; | ||
@import "microscope-sass/lib/typography"; | ||
|
||
.skiplink { | ||
position: absolute; | ||
top: -100vh; | ||
left: -100vh; | ||
} | ||
|
||
.skiplink:focus { | ||
@include body; | ||
@include border(all, $color-primary); | ||
@include color-background; | ||
box-sizing: border-box; | ||
font-family: $typography-font-family-text; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
} |
2 changes: 1 addition & 1 deletion
2
rijkshuisstijl/static/rijkshuisstijl/bundles/rh-css-print-l.css
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/******/ (function() { // webpackBootstrap | ||
/******/ "use strict"; | ||
/******/ // The require scope | ||
/******/ var __webpack_require__ = {}; | ||
/******/ | ||
/************************************************************************/ | ||
/******/ /* webpack/runtime/make namespace object */ | ||
/******/ !function() { | ||
/******/ // define __esModule on exports | ||
/******/ __webpack_require__.r = function(exports) { | ||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { | ||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); | ||
/******/ } | ||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); | ||
/******/ }; | ||
/******/ }(); | ||
/******/ | ||
/************************************************************************/ | ||
var __webpack_exports__ = {}; | ||
/*!*****************************************************************!*\ | ||
!*** ./rijkshuisstijl/sass/rijkshuisstijl-print-landscape.scss ***! | ||
\*****************************************************************/ | ||
__webpack_require__.r(__webpack_exports__); | ||
// extracted by mini-css-extract-plugin | ||
|
||
/******/ })() | ||
; |
Oops, something went wrong.