Skip to content

Commit

Permalink
aligned select form button relatorio
Browse files Browse the repository at this point in the history
  • Loading branch information
Lobz committed Apr 10, 2024
1 parent af6f8b8 commit ce904ae
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 33 deletions.
12 changes: 6 additions & 6 deletions public/css/app.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/css/app.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

35 changes: 15 additions & 20 deletions public/js/app.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,36 +1,29 @@
/*!
* Bootstrap v4.6.0 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Bootstrap v4.6.2 (https://getbootstrap.com/)
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/

/*!
* Sizzle CSS Selector Engine v2.3.5
* https://sizzlejs.com/
* The buffer module from node.js, for the browser.
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://js.foundation/
*
* Date: 2020-03-14
* @author Feross Aboukhadijeh <http://feross.org>
* @license MIT
*/

/*!
* jQuery JavaScript Library v3.5.1
* jQuery JavaScript Library v3.7.1
* https://jquery.com/
*
* Includes Sizzle.js
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license
* https://jquery.org/license
*
* Date: 2020-05-04T22:49Z
* Date: 2023-08-28T13:37Z
*/

/*!
* jQuery UI :data 1.12.1
* jQuery UI :data 1.13.2
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
Expand All @@ -39,7 +32,7 @@
*/

/*!
* jQuery UI Mouse 1.12.1
* jQuery UI Mouse 1.13.2
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
Expand All @@ -48,7 +41,7 @@
*/

/*!
* jQuery UI Scroll Parent 1.12.1
* jQuery UI Scroll Parent 1.13.2
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
Expand All @@ -57,7 +50,7 @@
*/

/*!
* jQuery UI Sortable 1.12.1
* jQuery UI Sortable 1.13.2
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
Expand All @@ -66,14 +59,16 @@
*/

/*!
* jQuery UI Widget 1.12.1
* jQuery UI Widget 1.13.2
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
*/

/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */

/*!@preserve
* Tempus Dominus Bootstrap4 v5.39.0 (https://tempusdominus.github.io/bootstrap-4/)
* Copyright 2016-2020 Jonathan Peterson and contributors
Expand Down
2 changes: 1 addition & 1 deletion public/js/app.js.map

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions resources/sass/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,6 @@ footer {
margin-bottom: 20px;
margin-left: 0px;
margin-right: 0px;
display: grid;
grid-auto-flow: column;
grid-column-gap: 10px;
}

.form-group {
Expand All @@ -181,6 +178,12 @@ footer {
position: relative;
}

.gridline {
display: grid;
grid-auto-flow: column;
grid-column-gap: 10px;
}

input.small {
max-width: 55px;
}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/relatorio/select.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

<form action="{{URL::to('/relatorio')}}" method='GET' class="relatorio-select row">
<form action="{{URL::to('/relatorio')}}" method='GET' class="relatorio-select row gridline">
<label for="turma">Turma:</label>
<select id="turma" name="turma">
@foreach ($turmas as $key => $value)
Expand Down

0 comments on commit ce904ae

Please sign in to comment.