CSS stuff

This commit is contained in:
Jon Roberts 2023-04-13 15:20:36 -06:00
parent f1a96e37fe
commit c3431ab36a
No known key found for this signature in database
GPG key ID: EED093582198B041
3 changed files with 8 additions and 4 deletions

View file

@ -133,11 +133,15 @@ a.breadcrumb__back {
}
}
.withdraw_outline {
a.withdraw_outline {
box-shadow: inset 0 0 0 2px color('error');
color: color('error');
}
a.withdraw {
background-color: color('error');
}
.usa-sidenav {
.usa-sidenav__item {
span {

View file

@ -117,7 +117,7 @@ class DomainApplicationFixture:
"organization_name": "Example - Approved",
},
{
"status": "withdrawn"
"status": "withdrawn",
"organization_name": "Example - Withdrawn",
}
]

View file

@ -11,8 +11,8 @@
If you withdraw your request we won't review it. Once you withdraw your request you'll be able to edit it or completely remove it.
<p><button type="" class="usa-button usa-button--outline withdraw_outline">Withdraw request</button>
<a href="{% url 'application-status' domainapplication.id %}"> Cancel </a></p>
<p><a href="{% url 'application-withdrawn' domainapplication.id %}" class="usa-button withdraw">Withdraw request</button>
<a href="{% url 'application-status' domainapplication.id %}">Cancel</a></p>
</div>