Small css changes
This commit is contained in:
parent
090da3469a
commit
0b1e01a848
3 changed files with 11 additions and 3 deletions
|
@ -56,8 +56,8 @@ return [
|
|||
*/
|
||||
|
||||
'from' => [
|
||||
'address' => 'hello@example.com',
|
||||
'name' => 'Example',
|
||||
'address' => 'elearning@mwalbeck.org',
|
||||
'name' => 'Elearning',
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
8
public/css/app.css
vendored
8
public/css/app.css
vendored
|
@ -43,4 +43,12 @@
|
|||
button + button {
|
||||
margin-right: 0.2em;
|
||||
margin-left: 0.2em;
|
||||
}
|
||||
|
||||
.question-options {
|
||||
list-style-type: disc;
|
||||
}
|
||||
|
||||
.question-options .list-group-item{
|
||||
display: list-item;
|
||||
}
|
|
@ -59,7 +59,7 @@
|
|||
<div class="panel-body">
|
||||
{{ $question->question }}
|
||||
</div>
|
||||
<ul class="list-group">
|
||||
<ul class="list-group question-options">
|
||||
@foreach ($question->options as $option)
|
||||
<li class="list-group-item">{{ $option->option }}</li>
|
||||
@endforeach
|
||||
|
|
Reference in a new issue