Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Code review - BEM syntax
Signed-off-by: Dariusz Olszewski <[email protected]>
  • Loading branch information
starypatyk committed Apr 27, 2023
commit f09a4cdafac30de0183314b2311e9ba9bdf2db27
6 changes: 3 additions & 3 deletions src/views/Viewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -432,9 +432,9 @@ export default {
isFullscreenMode(mode) {
const modalContainer = document.getElementsByClassName('modal-container').item(0)
if (mode) {
modalContainer.classList.add('modal-container-fullscreen')
modalContainer.classList.add('modal-container--fullscreen')
} else {
modalContainer.classList.remove('modal-container-fullscreen')
modalContainer.classList.remove('modal-container--fullscreen')
}
},

Expand Down Expand Up @@ -1085,7 +1085,7 @@ export default {
background-color: transparent;
box-shadow: none;
}
.modal-container-fullscreen {
.modal-container--fullscreen {
top: 0;
bottom: 0;
height: 100%;
Expand Down