chore: more consistent class name
This commit is contained in:
parent
9f50fdd4d1
commit
2ecad5c264
12 changed files with 13 additions and 13 deletions
|
@ -111,7 +111,7 @@ export default function Now(props) {
|
|||
<Reading books={books} />
|
||||
<Movies movies={movies} />
|
||||
<TV tv={tv} />
|
||||
<p className="pt-8 text-center text-xs text-gray-900 dark:text-gray-100">
|
||||
<p className="pt-8 text--centered text-xs text-gray-900 dark:text-gray-100">
|
||||
(This is a{' '}
|
||||
<Link
|
||||
className="text-blue-500 hover:text-blue-600 dark:hover:text-blue-400"
|
||||
|
|
|
@ -141,7 +141,7 @@ layout: main
|
|||
{% render "partials/now/links.liquid", links:links %}
|
||||
{% render "partials/now/media-grid.liquid", data:movies, icon: "movie", title: "Movies", shape: "vertical", count: 6, loading: 'lazy' %}
|
||||
{% render "partials/now/media-grid.liquid", data:tv, icon: "device-tv", title: "TV", shape: "vertical", count: 6, loading: 'lazy' %}
|
||||
<p class="text-xs text-center pt-6">This is a
|
||||
<p class="text-xs text--centered pt-6">This is a
|
||||
<a href="https://nownownow.com/about">now page</a>, and if you have your own site,
|
||||
<a href="https://nownownow.com/about">you should make one too</a>.</p>
|
||||
```
|
||||
|
|
|
@ -15,7 +15,7 @@ Given that I was already iterating through all pages in my posts collection, my
|
|||
<div class="flex flex-row items-center">
|
||||
<select
|
||||
id="pagination"
|
||||
class="block w-12 h-12 rounded-full text-white dark:text-gray-900 bg-blue-500 hover:bg-blue-500 dark:hover:bg-blue-300 mr-1 focus-visible:outline-none focus-visible:bg-blue-400 appearance-none text-center"
|
||||
class="block w-12 h-12 rounded-full text-white dark:text-gray-900 bg-blue-500 hover:bg-blue-500 dark:hover:bg-blue-300 mr-1 focus-visible:outline-none focus-visible:bg-blue-400 appearance-none text--centered"
|
||||
style="text-align-last:center">
|
||||
{% for pageEntry in pagination.pages %}
|
||||
<option {% if page.url == pagination.hrefs[forloop.index0] %}selected{% endif %} value="{{ forloop.index }}">{{ forloop.index }}</option>
|
||||
|
|
Reference in a new issue