diff --git a/css/icons.scss b/css/icons.scss index 0806df4..42b034e 100644 --- a/css/icons.scss +++ b/css/icons.scss @@ -49,3 +49,10 @@ .icon-maybe { @include icon-color('maybe-vote-variant', 'forms', $color-warning); } + +.icon-add-primary::before { + content: ''; + background-image: url(icon-color-path('add', 'actions', $color-primary-text, 1, true)); + width: 16px; + height: 16px; +} diff --git a/src/views/Create.vue b/src/views/Create.vue index 4b6551a..7c47228 100644 --- a/src/views/Create.vue +++ b/src/views/Create.vue @@ -103,7 +103,7 @@ :open.sync="questionMenuOpened" :menu-title="t('forms', 'Add a question')" :primary="true" - :default-icon="isLoadingQuestions ? 'icon-loading-small' : 'icon-add-white'"> + :default-icon="isLoadingQuestions ? 'icon-loading-small' : 'icon-add-primary'">