File tree 2 files changed +24
-12
lines changed
2 files changed +24
-12
lines changed Original file line number Diff line number Diff line change @@ -154,10 +154,18 @@ export default {
154
154
</script >
155
155
156
156
<style lang="scss">
157
- .watchlist .pagination-simple {
158
- text-align : center ;
159
- grid-template-columns : auto 6rem auto ;
160
- button :first-child { text-align : right ; }
157
+ .watchlist main #public-content {
158
+ grid-template-areas :
159
+ " header header"
160
+ " main sidebar"
161
+ " main sidebar" ;
162
+ @include break-mobile-sm {
163
+ grid-template-areas :
164
+ " header"
165
+ " sidebar"
166
+ " main"
167
+ " footer" ;
168
+ }
161
169
}
162
170
.watchlist-section {
163
171
display : flex ;
Original file line number Diff line number Diff line change 17
17
<div class =" watchlist-watched-boards watchlist-panel" >
18
18
<div class =" watchlist-panel-header" >
19
19
<h2 >Watched Boards</h2 >
20
- <div class =" pagination-simple" >
21
- <button @click =" pageResults(-1)" :disabled =" currentPage <= 1" >❮ ; Prev</button >
22
- <div class =" page" v-html =" currentPage" ></div >
23
- <button @click =" pageResults(1)" :disabled =" !has_more_boards" >Next ❯ ; </button >
20
+ <div class =" pagination-slide" >
21
+ <div class =" pagination-controls" >
22
+ <button @click =" pageResults(-1)" :disabled =" currentPage <= 1" >❮ ; Prev</button >
23
+ <div class =" page" v-html =" currentPage" ></div >
24
+ <button @click =" pageResults(1)" :disabled =" !has_more_boards" >Next ❯ ; </button >
25
+ </div >
24
26
</div >
25
27
</div >
26
28
74
76
<div class =" watchlist-watched-threads watchlist-panel" v-if =" threads.length" >
75
77
<div class =" watchlist-panel-header" >
76
78
<h2 >Watched Threads</h2 >
77
- <div class =" pagination-simple" >
78
- <button @click =" pageResults(-1, true)" :disabled =" currentTPage <= 1" >❮ ; Prev</button >
79
- <div class =" page" v-html =" currentTPage" ></div >
80
- <button @click =" pageResults(1, true)" :disabled =" !has_more_threads" >Next ❯ ; </button >
79
+ <div class =" pagination-slide" >
80
+ <div class =" pagination-controls" >
81
+ <button @click =" pageResults(-1, true)" :disabled =" currentTPage <= 1" >❮ ; Prev</button >
82
+ <div class =" page" v-html =" currentTPage" ></div >
83
+ <button @click =" pageResults(1, true)" :disabled =" !has_more_threads" >Next ❯ ; </button >
84
+ </div >
81
85
</div >
82
86
</div >
83
87
You can’t perform that action at this time.
0 commit comments