Skip to content

Commit

Permalink
minor #1474 Misc minor fixes and updates in some styles (javiereguiluz)
Browse files Browse the repository at this point in the history
This PR was merged into the main branch.

Discussion
----------

Misc minor fixes and updates in some styles

Commits
-------

ca0bf8a Misc minor fixes and updates in some styles
  • Loading branch information
javiereguiluz committed Dec 11, 2023
2 parents 83dbfc9 + ca0bf8a commit 633aaa6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion assets/styles/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,10 @@ header nav.navbar .nav-item {
margin: 1.5em 0 0
}

.btn-secondary {
color: #fff;
}

footer {
background: var(--secondary-color);
margin-top: 2em;
Expand Down Expand Up @@ -321,9 +325,14 @@ footer #footer-resources i {
/* Forms
------------------------------------------------------------------------- */
.form-control {
color: var(--gray-700);
height: 45px;
}

.form-group .form-control:focus {
color: var(--text-color);
}

.form-group.has-error .form-control {
border-color: var(--red);
}
Expand Down Expand Up @@ -395,7 +404,7 @@ body#homepage .jumbotron .btn {
body#homepage .jumbotron P {
margin-bottom: 15px;
font-size: 23px;
font-weight: 200
font-weight: 400
}

/* Page: 'Login'
Expand Down
2 changes: 1 addition & 1 deletion templates/admin/blog/_delete_form.html.twig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{ include('blog/_delete_post_confirmation.html.twig') }}
<form action="{{ url('admin_post_delete', {id: post.id}) }}" method="post" data-confirmation="true" id="delete-form">
<input type="hidden" name="token" value="{{ csrf_token('delete') }}" />
<button type="submit" class="btn btn-lg btn-block btn-danger">
<button type="submit" class="btn btn-block btn-danger">
<i class="fa fa-trash" aria-hidden="true"></i>
{{ 'action.delete_post'|trans }}
</button>
Expand Down

0 comments on commit 633aaa6

Please sign in to comment.