Commit 81ec60b1 authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray

Include fixed-width mixin instead of extending the class

parent 0276b868
// Limit MR description for side-by-side diff view
.fixed-width-container {
@include fixed-width-container;
}
.issuable-warning-icon { .issuable-warning-icon {
background-color: $orange-100; background-color: $orange-100;
border-radius: $border-radius-default; border-radius: $border-radius-default;
...@@ -27,7 +22,7 @@ ...@@ -27,7 +22,7 @@
.files-changed-inner, .files-changed-inner,
.limited-header-width, .limited-header-width,
.limited-width-notes { .limited-width-notes {
@extend .fixed-width-container; @include fixed-width-container;
} }
.issuable-details { .issuable-details {
...@@ -35,13 +30,13 @@ ...@@ -35,13 +30,13 @@
.mr-source-target, .mr-source-target,
.mr-state-widget, .mr-state-widget,
.merge-manually { .merge-manually {
@extend .fixed-width-container; @include fixed-width-container;
} }
} }
.merge-request-details { .merge-request-details {
.emoji-list-container { .emoji-list-container {
@extend .fixed-width-container; @include fixed-width-container;
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment