summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormfluharty <mfluharty@gitlab.com>2019-07-05 10:44:46 -0600
committermfluharty <mfluharty@gitlab.com>2019-07-09 09:14:46 -0600
commit26f7e8a13a4fe034ae4c2dbdb034c5a72b373835 (patch)
treeb46942a6722a5c6c41dec324affb9f1ebb8e8e96
parentdb1b15e4245547a4468ab70d337a73a40d4fc98c (diff)
downloadgitlab-ce-26f7e8a13a4fe034ae4c2dbdb034c5a72b373835.tar.gz
Adjust modal border radius to match design spec
Set modal border radius to 0.25rem With 16px default font size, should match the 4px from the design spec Before this, it was the bootstrap default (0.3rem = 4.8px)
-rw-r--r--app/assets/stylesheets/framework/modal.scss4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/modal.scss b/app/assets/stylesheets/framework/modal.scss
index 975dca168d5..e72e52a3e62 100644
--- a/app/assets/stylesheets/framework/modal.scss
+++ b/app/assets/stylesheets/framework/modal.scss
@@ -86,6 +86,10 @@ body.modal-open {
.modal {
background-color: $black-transparent;
+ .modal-content {
+ border-radius: 0.25rem;
+ }
+
@include media-breakpoint-up(sm) {
.modal-dialog {
margin: 64px auto;