Skip to content

Commit

Permalink
Change size of close icon. #606
Browse files Browse the repository at this point in the history
  • Loading branch information
suntala committed Sep 6, 2018
1 parent 04cdbda commit 46d6d87
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions css/importScreen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,10 @@
position: absolute;
left: 25%;
}
&__close {
.icon-close {
position: absolute;
right: 5%;
top: 10%;
// background-size: 24px;
// ^ part of WIP
background-size: 24px;
}
}
2 changes: 1 addition & 1 deletion src/components/ImportScreen.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<template>
<div class="emptycontent import-screen">
<p class="icon-close import-screen__close" @click="closeScreen" />
<p class="icon-close" @click="closeScreen" />
<p class="icon-upload" />
<h3 class="import-screen__header">{{ t('contacts', 'Importing into') }} {{ importState.addressbook }}</h3>
<progress :max="importState.total" :value="importState.accepted" class="import-screen__progress" />
Expand Down
4 changes: 2 additions & 2 deletions src/views/Contacts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
<div id="app-content">
<div id="app-content-wrapper">
<!-- loading -->
<import-screen v-if="importState.stage != 'default'" />
<!-- <import-screen v-if="true" /> -->
<!-- <import-screen v-if="importState.stage != 'default'" /> -->
<import-screen v-if="true" />
<!-- ^ part of WIP -->
<template v-else>
<!-- contacts list -->
Expand Down

0 comments on commit 46d6d87

Please sign in to comment.