summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsamdbeckham <sbeckham@gitlab.com>2018-06-04 14:55:38 +0100
committersamdbeckham <sbeckham@gitlab.com>2018-06-04 14:55:38 +0100
commit6576244dff0ba0e5a817ca4c1d64722c68b9a85f (patch)
treea8779a20e9636a3a00bf954c689903c04dd1f673
parent359f61a0f36d9fa2902e1fce21ca538681f9f2f5 (diff)
downloadgitlab-ce-47053-keyboard-shortcuts-modal-is-broken.tar.gz
Explicitly sets `<kbd>` elements to `display: inline-block`47053-keyboard-shortcuts-modal-is-broken
-rw-r--r--app/assets/stylesheets/framework/typography.scss4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/typography.scss b/app/assets/stylesheets/framework/typography.scss
index ed0bfbbe08b..94bc95e358d 100644
--- a/app/assets/stylesheets/framework/typography.scss
+++ b/app/assets/stylesheets/framework/typography.scss
@@ -319,6 +319,10 @@ h6 {
}
/** CODE **/
+kbd {
+ display: inline-block;
+}
+
pre {
font-family: $monospace_font;
display: block;