Skip to content

Commit

Permalink
feat: fix view full width issue watchlist
Browse files Browse the repository at this point in the history
  • Loading branch information
akinsey committed Dec 4, 2021
1 parent 2f28a8e commit cc04331
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ export default {
/*-- View Layout Wrappers --*/
#public-content {
margin-top: $header-bottom-margin;
& > div:first-child { width: 100%; }
@include break-mobile-sm {
margin-top: -0.5rem;
}
Expand Down
2 changes: 1 addition & 1 deletion src/views/Threads.vue
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ export default {
grid-column: 1 / span 2;
display: grid;
grid-area: header;
width: 100%;
h1 {
margin: 0;
padding: 0;
Expand Down
2 changes: 1 addition & 1 deletion src/views/ThreadsPostedIn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export default {
<style scoped lang="scss">
.threads-posted-in main #public-content { grid-template-areas: 'header header' 'main sidebar' 'main sidebar'; }
.thread-data { grid-area: main; }
.thread-data { grid-area: main; width: 100%; }
.sidebar {
grid-area: sidebar;
.sidebar-block {
Expand Down
6 changes: 5 additions & 1 deletion src/views/WatchlistEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -328,13 +328,17 @@ export default {
}
@include break-mobile-sm {
margin-bottom: 1rem;
.watchlist-panel-header {
flex-direction: column;
flex-direction: row;
width: 100%;
}
.pagination-slide {
width: 100%;
.pagination-controls {
justify-self: right;
}
}
.pagination-components {
Expand Down

0 comments on commit cc04331

Please sign in to comment.