Additional hover styling

This commit is contained in:
zandercymatics 2023-11-03 14:24:31 -06:00
parent 3224d41c33
commit 3b186509c1
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
3 changed files with 8 additions and 2 deletions

View file

@ -27,11 +27,16 @@ a.usa-button {
}
a.usa-button.disabled-link {
pointer-events: none !important;
cursor: default !important;
background-color: #ccc !important;
}
a.usa-button.disabled-domain-request-link:hover {
color: #ccc !important;
cursor: not-allowed !important;
text-decoration: none !important;
}
a.usa-button:not(.usa-button--unstyled, .usa-button--outline) {
color: color('white');
}

View file

@ -4,6 +4,7 @@ from django.shortcuts import render
from registrar.models import DomainApplication
from django.conf import settings
def index(request):
"""This page is available to anyone without logging in."""
context = {}