feat: add edit button to adoption notice

This commit is contained in:
2024-05-30 12:14:09 +02:00
parent 47e993c8ae
commit f56e830a43
2 changed files with 26 additions and 3 deletions

View File

@@ -32,6 +32,10 @@ body {
margin: 20px;
}
table {
width: 100%;
}
a {
text-decoration: none;
color: inherit;
@@ -57,7 +61,6 @@ th {
}
h1 {
padding-top: 10px;
word-wrap: break-word;
color: var(--text-one);
text-shadow: 2px 2px var(--shadow-one);
@@ -143,6 +146,15 @@ h1 {
font-weight: bold;
}
.btn2 {
background-color: var(--secondary-light-one);
color: var(--primary-dark-one);
padding: 8px;
border-radius: 4px;
border: none;
font-weight: bold;
}
.form-button, .link-button a:link, .link-button a:visited {
background-color: #4ba3cd;
color: white;
@@ -378,4 +390,14 @@ form {
.form-group {
margin: 30px;
}
.detail-adoption-notice-header h1 {
width: 50%;
display: inline-block;
}
.detail-adoption-notice-header a {
display: inline-block;
float: right;
}