diff --git a/resources/assets/sass/_infobox.scss b/resources/assets/sass/_infobox.scss new file mode 100644 index 0000000..4fc9647 --- /dev/null +++ b/resources/assets/sass/_infobox.scss @@ -0,0 +1,12 @@ +// box e.g. above a table in the table view +.infobox { + margin-left: auto; + margin-right: auto; + @include mb(3); + @include px(0); + @include py(2); + justify-content: center; + @extend .border; + @extend .rounded; + @extend .box-shadow; +} diff --git a/resources/assets/sass/app.scss b/resources/assets/sass/app.scss index 1b0a595..f140f5f 100644 --- a/resources/assets/sass/app.scss +++ b/resources/assets/sass/app.scss @@ -21,6 +21,8 @@ html { @import "bootstrap-customizations/responsive"; @import "bootstrap-customizations/typography"; +@import "infobox"; + .bio-table { td { padding-top: dist(2); diff --git a/resources/views/table/view.blade.php b/resources/views/table/view.blade.php index ec2ae45..e8f9636 100644 --- a/resources/views/table/view.blade.php +++ b/resources/views/table/view.blade.php @@ -21,7 +21,7 @@ -
+
{{-- Tab panels wrapper --}}