diff --git a/webapp/components/LoginForm/LoginForm.vue b/webapp/components/LoginForm/LoginForm.vue index df3eb039f..827fc32b7 100644 --- a/webapp/components/LoginForm/LoginForm.vue +++ b/webapp/components/LoginForm/LoginForm.vue @@ -40,7 +40,9 @@ {{ $t('login.register') }}

- + @@ -85,16 +87,6 @@ export default { width: 80vw; max-width: 620px; margin: auto; -} - -.login-form > .base-card { - position: relative; - - .v-popover { - position: absolute; - top: $space-small; - left: $space-small; - } .base-button { display: block; diff --git a/webapp/components/_new/generic/BaseCard/BaseCard.story.js b/webapp/components/_new/generic/BaseCard/BaseCard.story.js index 184144c8d..7ed32d067 100644 --- a/webapp/components/_new/generic/BaseCard/BaseCard.story.js +++ b/webapp/components/_new/generic/BaseCard/BaseCard.story.js @@ -41,6 +41,22 @@ storiesOf('Generic/BaseCard', module) `, })) + .add('with slot: topMenu', () => ({ + components: { BaseCard }, + template: ` + + +

I am a card heading

+

And I am a paragraph.

+ +
+ `, + })) + .add('with highlight prop', () => ({ components: { BaseCard }, template: ` diff --git a/webapp/components/_new/generic/BaseCard/BaseCard.vue b/webapp/components/_new/generic/BaseCard/BaseCard.vue index e53631b79..92f9a99d1 100644 --- a/webapp/components/_new/generic/BaseCard/BaseCard.vue +++ b/webapp/components/_new/generic/BaseCard/BaseCard.vue @@ -17,6 +17,9 @@ + @@ -48,6 +51,7 @@ export default { diff --git a/webapp/components/_new/generic/CardWithColumns/CardWithColumns.story.js b/webapp/components/_new/generic/CardWithColumns/CardWithColumns.story.js deleted file mode 100644 index 8b1e8940f..000000000 --- a/webapp/components/_new/generic/CardWithColumns/CardWithColumns.story.js +++ /dev/null @@ -1,21 +0,0 @@ -import { storiesOf } from '@storybook/vue' -import helpers from '~/storybook/helpers' -import CardWithColumns from './CardWithColumns.vue' - -storiesOf('Generic/CardWithColumns', module) - .addDecorator(helpers.layout) - - .add('default', () => ({ - components: { CardWithColumns }, - template: ` - - - - - `, - })) diff --git a/webapp/components/_new/generic/CardWithColumns/CardWithColumns.vue b/webapp/components/_new/generic/CardWithColumns/CardWithColumns.vue deleted file mode 100644 index 71fda7caf..000000000 --- a/webapp/components/_new/generic/CardWithColumns/CardWithColumns.vue +++ /dev/null @@ -1,26 +0,0 @@ - - - - - diff --git a/webapp/pages/password-reset.vue b/webapp/pages/password-reset.vue index e59a8e6c7..930a298fe 100644 --- a/webapp/pages/password-reset.vue +++ b/webapp/pages/password-reset.vue @@ -1,24 +1,22 @@