diff --git a/webapp/components/LoginForm/LoginForm.vue b/webapp/components/LoginForm/LoginForm.vue
index d61a5675a..ba635575a 100644
--- a/webapp/components/LoginForm/LoginForm.vue
+++ b/webapp/components/LoginForm/LoginForm.vue
@@ -50,16 +50,15 @@
{{ $t('login.forgotPassword') }}
-
{{ $t('login.login') }}
-
+
{{ $t('login.no-account') }}
{{ $t('login.register') }}
@@ -113,6 +112,11 @@ export default {
}
.login-card {
position: relative;
+
+ .base-button {
+ display: block;
+ width: 100%;
+ }
}
.login-locale-switch {
position: absolute;
diff --git a/webapp/components/Modal/ConfirmModal.vue b/webapp/components/Modal/ConfirmModal.vue
index 8297e6d0f..282dbed5e 100644
--- a/webapp/components/Modal/ConfirmModal.vue
+++ b/webapp/components/Modal/ConfirmModal.vue
@@ -10,11 +10,11 @@
-
+
{{ $t(modalData.buttons.cancel.textIdent) }}
-
+
-
{{ $t(modalData.buttons.confirm.textIdent) }}
-
+
diff --git a/webapp/components/Modal/DisableModal.vue b/webapp/components/Modal/DisableModal.vue
index d80ec0f55..e6aa3f5c7 100644
--- a/webapp/components/Modal/DisableModal.vue
+++ b/webapp/components/Modal/DisableModal.vue
@@ -4,11 +4,10 @@
- {{ $t('disable.cancel') }}
-
-
+ {{ $t('disable.cancel') }}
+
{{ $t('disable.submit') }}
-
+
diff --git a/webapp/components/Modal/ReportModal.vue b/webapp/components/Modal/ReportModal.vue
index 00fed2646..65ab41ec5 100644
--- a/webapp/components/Modal/ReportModal.vue
+++ b/webapp/components/Modal/ReportModal.vue
@@ -29,11 +29,11 @@
-
+
{{ $t('report.cancel') }}
-
+
-
{{ $t('report.submit') }}
-
+
@@ -161,7 +161,7 @@ export default {
.ds-modal {
max-width: 600px !important;
}
-.ds-radio-option:not(.ds-button) {
+.ds-radio-option {
width: 100% !important;
}
.ds-radio-option-label {
diff --git a/webapp/components/NotificationMenu/NotificationMenu.spec.js b/webapp/components/NotificationMenu/NotificationMenu.spec.js
index 01c972d05..530d202e2 100644
--- a/webapp/components/NotificationMenu/NotificationMenu.spec.js
+++ b/webapp/components/NotificationMenu/NotificationMenu.spec.js
@@ -33,7 +33,7 @@ describe('NotificationMenu.vue', () => {
it('counter displays 0', () => {
wrapper = Wrapper()
- expect(wrapper.find('ds-button-stub').text()).toEqual('0')
+ expect(wrapper.find('base-button-stub').text()).toEqual('0')
})
it('no dropdown is rendered', () => {
@@ -67,12 +67,12 @@ describe('NotificationMenu.vue', () => {
it('counter displays 0', () => {
wrapper = Wrapper()
- expect(wrapper.find('ds-button-stub').text()).toEqual('0')
+ expect(wrapper.find('base-button-stub').text()).toEqual('0')
})
it('button is not primary', () => {
wrapper = Wrapper()
- expect(wrapper.find('ds-button-stub').props('primary')).toBe(false)
+ expect(wrapper.find('base-button-stub').props('primary')).toBe(false)
})
})
@@ -130,12 +130,12 @@ describe('NotificationMenu.vue', () => {
it('displays the number of unread notifications', () => {
wrapper = Wrapper()
- expect(wrapper.find('ds-button-stub').text()).toEqual('2')
+ expect(wrapper.find('base-button-stub').text()).toEqual('2')
})
it('renders primary button', () => {
wrapper = Wrapper()
- expect(wrapper.find('ds-button-stub').props('primary')).toBe(true)
+ expect(wrapper.find('base-button-stub').props('primary')).toBe(true)
})
})
})
diff --git a/webapp/components/NotificationMenu/NotificationMenu.vue b/webapp/components/NotificationMenu/NotificationMenu.vue
index 413102915..bcb353d1b 100644
--- a/webapp/components/NotificationMenu/NotificationMenu.vue
+++ b/webapp/components/NotificationMenu/NotificationMenu.vue
@@ -1,12 +1,12 @@
-
+