@@ -4,7 +4,7 @@
<div
:class="{
'modal-card': true,
- 'modal-small': size === 'small',
+ 'modal-slim': size === 'slim',
'modal-wide': size === 'wide',
'modal-split': split
}"
@@ -140,7 +140,7 @@ export default {
margin: 0;
font-size: 16px;
- &.modal-small {
+ &.modal-slim {
width: 640px;
}
@@ -1,6 +1,6 @@
<template>
<div>
- <modal class="confirm-modal" title="Confirm Action" :size="'small'">
+ <modal class="confirm-modal" title="Confirm Action" :size="'slim'">
<template #body>
<div class="confirm-modal-inner-container">
{{ message }}
@@ -3,7 +3,7 @@
<modal
title="Login"
class="login-modal"
- :size="'small'"
+ :size="'slim'"
@closed="closeLoginModal()"
>
title="Register"
class="register-modal"
@closed="closeRegisterModal()"