fix ultimate gear notification length - allow longer notifications but with a-like border-radius

This commit is contained in:
negue
2018-08-27 20:08:09 +02:00
parent c862bdb76a
commit 07bc374078
3 changed files with 3 additions and 3 deletions

View File

@@ -127,7 +127,7 @@ const NOTIFICATIONS = {
},
ULTIMATE_GEAR_ACHIEVEMENT: {
achievement: true,
label: ($t) => `${$t('achievement')}: ${$t('gearAchievement')}`,
label: ($t) => `${$t('achievement')}: ${$t('gearAchievementNotification')}`,
modalId: 'ultimate-gear',
},
REBIRTH_ACHIEVEMENT: {

View File

@@ -33,7 +33,7 @@ transition(name="fade")
<style lang="scss" scoped>
.notification {
border-radius: 1000px;
border-radius: 30px;
background-color: #24cc8f;
box-shadow: 0 2px 2px 0 rgba(26, 24, 29, 0.16), 0 1px 4px 0 rgba(26, 24, 29, 0.12);
color: white;
@@ -43,7 +43,6 @@ transition(name="fade")
}
.info {
max-height: 56px;
background-color: #46a7d9;
padding-top: .5em;
}