17 lines
295 B
PHP
17 lines
295 B
PHP
@if($model->responsive)
|
|
height: "100%",
|
|
width: "100%",
|
|
@else
|
|
@if($model->height)
|
|
height: "{{ $model->height }}px",
|
|
@else
|
|
height: "100%",
|
|
@endif
|
|
|
|
@if($model->width)
|
|
width: "{{ $model->width }}px",
|
|
@else
|
|
width: "100%",
|
|
@endif
|
|
@endif
|