Remove text from dismiss modal button

This commit is contained in:
leigh-mil 2019-10-02 16:22:14 -04:00
parent fe29b5d838
commit cf42bfbbda
2 changed files with 6 additions and 4 deletions

View File

@ -137,7 +137,6 @@ body {
position: absolute;
top: $gap;
right: $gap;
width: 8rem;
@include media($medium-screen) {
top: $gap * 2;
@ -251,3 +250,9 @@ body {
}
}
}
.modal--dismissable {
.modal__body {
padding-top: $gap * 3.5;
}
}

View File

@ -16,9 +16,6 @@
{% if dismissable %}
<button type='button' class='icon-link modal__dismiss' v-on:click='closeModal("{{name}}")'>
{{ Icon('x') }}
<span>
{{ "common.close" | translate }}
</span>
</button>
{% endif %}
</div>