forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-30 21:30:34 -06:00
parent 1b9422d994
commit 1f90abea29
3 changed files with 1 additions and 20 deletions

View File

@ -1236,12 +1236,6 @@ video {
.w-72 {
width: 18rem;
}
.w-0\.5 {
width: 0.125rem;
}
.w-0 {
width: 0px;
}
.w-56 {
width: 14rem;
}
@ -3728,11 +3722,6 @@ video {
color: rgba(var(--color-500), var(--tw-text-opacity));
}
.dark .dark\:text-yellow-700 {
--tw-text-opacity: 1;
color: rgba(180, 83, 9, var(--tw-text-opacity));
}
.dark .dark\:text-gray-300 {
--tw-text-opacity: 1;
color: rgba(var(--color-300), var(--tw-text-opacity));
@ -3763,11 +3752,6 @@ video {
color: rgba(var(--color-400), var(--tw-text-opacity));
}
.dark .dark\:hover\:text-yellow-600:hover {
--tw-text-opacity: 1;
color: rgba(217, 119, 6, var(--tw-text-opacity));
}
.dark .dark\:focus\:bg-transparent:focus {
background-color: transparent;
}

View File

@ -194,9 +194,6 @@
<span>{{ section.description }}</span>
</p>
</div>
{% if loop.index != stats.length %}
<div class="w-0.5 border-l border-gray-700 dark:border-gray-900 shadow-inset-r-white-05"></div>
{% endif %}
{% endfor %}
</div>

View File

@ -144,7 +144,7 @@
</div>
{% if v.admin_level > 1 %}
<!-- Admin link -->
<a href="{{ '/admin' if v else '/signup?redirect={{request.path | urlencode}}' }}" class="bg-transparent p-1 rounded-full text-yellow-500 hover:text-yellow-400 dark:text-yellow-700 dark:hover:text-yellow-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white">
<a href="{{ '/admin' if v else '/signup?redirect={{request.path | urlencode}}' }}" class="bg-transparent p-1 rounded-full text-yellow-500 hover:text-yellow-400 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white">
<span class="sr-only">Admin tools</span>
<i class="fas fa-crown fa-fw"></i>
</a>