Skip to content

Commit

Permalink
Merge pull request #3408 from przspa/bugfix/#3393
Browse files Browse the repository at this point in the history
Moved login popup close icon to right
  • Loading branch information
pkarw authored Aug 23, 2019
2 parents 6d9d9b3 + 9fd9b49 commit 027a0c9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed ordering of the categories and subcategories in sidebar - @andrzejewsky (#2665)
- Some SSR problems with urlDispatcher during multireloading page - @patzick (#3323)
- Fixed two bugs in `category-next/getCategoryFrom` (#3286) and `category-next/getCurrentCategory` (#3332) - @cewald (#3295)
- Fixed login popup close icon position - @przspa (#3393)
- Fixed styles for original price on Wishlist sidebar - @przspa (#3392)

### Changed / Improved
Expand Down
11 changes: 9 additions & 2 deletions src/themes/default/components/core/blocks/Auth/Login.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<template>
<div>
<header class="modal-header py25 px65 h1 serif weight-700 bg-cl-secondary">
{{ $t('Log in') }}
<i
slot="close"
class="modal-close material-icons p15 cl-bg-tertiary"
@click="close"
>
close
</i>
{{ $t('Log in') }}
</header>
<div v-if="hasRedirect" class="pt10 pb10 px65 redirect-error">
<p class="h5 mb0 mt0">
Expand Down Expand Up @@ -156,7 +156,14 @@ export default {
@import '~theme/css/helpers/functions/color';
$color-error: color(error);
$white: color(white);
.modal-header{
display: flex;
align-items: center;
justify-content: space-between;
}
.modal-close{
cursor: pointer;
}
.modal-content {
@media (max-width: 400px) {
padding-left: 20px;
Expand Down

0 comments on commit 027a0c9

Please sign in to comment.