diff options
author | Doge <[email protected]> | 2021-05-10 00:28:12 +0800 |
---|---|---|
committer | Doge <[email protected]> | 2021-05-10 00:28:12 +0800 |
commit | 37af3922761fd0c982ba2ffec11bfa1850269702 (patch) | |
tree | 83e019ed749eb610833854c2c5accc95677db61e /layout/index.ejs | |
parent | b481a882fdfb55783618af0c1380faba959f6f11 (diff) | |
download | chromate-37af3922761fd0c982ba2ffec11bfa1850269702.tar.gz chromate-37af3922761fd0c982ba2ffec11bfa1850269702.tar.bz2 chromate-37af3922761fd0c982ba2ffec11bfa1850269702.zip |
Enhance autodark working
Diffstat (limited to 'layout/index.ejs')
-rw-r--r-- | layout/index.ejs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/layout/index.ejs b/layout/index.ejs index 93f15af..1a506a6 100644 --- a/layout/index.ejs +++ b/layout/index.ejs @@ -96,14 +96,14 @@ <div class="column is-8 is-offset-2"> <nav class="pagination is-centered" role="navigation" aria-label="pagination"> <% if (page.prev) { %> - <a class="button is-light" href="<%- url_for(page.prev_link) %>"><%- __("prev") %></a> + <a class="button auto-dark" href="<%- url_for(page.prev_link) %>"><%- __("prev") %></a> <% } else { %> - <a class="button is-disabled is-light" disabled><%- __("prev") %></a> + <a class="button is-disabled auto-dark" disabled><%- __("prev") %></a> <% } %> <% if (page.next) { %> - <a class="button is-light" href="<%- url_for(page.next_link) %>"><%- __("next") %></a> + <a class="button auto-dark" href="<%- url_for(page.next_link) %>"><%- __("next") %></a> <% } else { %> - <a class="button is-disabled is-light" disabled><%- __("next") %></a> + <a class="button is-disabled auto-dark" disabled><%- __("next") %></a> <% } %> </nav> </div> |