fixed some style issues
This commit is contained in:
parent
492ef9a988
commit
feaaaa89a5
|
|
@ -302,7 +302,7 @@
|
|||
</table>
|
||||
</div>
|
||||
|
||||
<button type="button" class="btn btn-lg btn-primary" id="add-option-btn" style="margin-top: 20px" @click="addOptionRow()">
|
||||
<button type="button" class="btn btn-lg btn-primary mt-20" id="add-option-btn" @click="addOptionRow()">
|
||||
{{ __('admin::app.catalog.attributes.add-option-btn-title') }}
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -421,7 +421,7 @@ input {
|
|||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
|
||||
grid-auto-rows: auto;
|
||||
grid-column-gap: 48px;
|
||||
grid-column-gap: 30px;
|
||||
grid-row-gap: 15px;
|
||||
justify-items: end;
|
||||
}
|
||||
|
|
@ -827,7 +827,6 @@ section.slider-block {
|
|||
border-top-right-radius: 0px;
|
||||
border-bottom-right-radius: 0px;
|
||||
padding-left: 12px;
|
||||
font-family: "Montserrat", sans-serif;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
|
|
@ -854,9 +853,8 @@ section.slider-block {
|
|||
> li {
|
||||
display: inline-block;
|
||||
border-right: 2px solid $border-color;
|
||||
cursor: pointer;
|
||||
padding: 0 15px;
|
||||
min-height: 26px;
|
||||
min-height: 15px;
|
||||
padding-top: 3px;
|
||||
|
||||
&:first-child {
|
||||
|
|
@ -1362,14 +1360,6 @@ section.slider-block {
|
|||
.control-group {
|
||||
.subscribe-field {
|
||||
width: 100%;
|
||||
|
||||
&::-webkit-input-placeholder {
|
||||
font-family: "montserrat", sans-serif;
|
||||
}
|
||||
|
||||
&::-moz-placeholder {
|
||||
font-family: "montserrat", sans-serif;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
|
|
@ -2483,8 +2473,11 @@ section.cart {
|
|||
padding-top: 20px;
|
||||
|
||||
.form-header {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
display: inline-block;
|
||||
height: 30px;
|
||||
|
||||
.checkout-step-heading {
|
||||
font-size: 24px;
|
||||
|
|
|
|||
|
|
@ -97,11 +97,11 @@
|
|||
</div>
|
||||
|
||||
<div style="margin-top: 15px;">
|
||||
<a class="btn btn-primary btn-sm" href="{{ route('customer.session.index') }}" style="color: #ffffff">
|
||||
<a class="btn btn-primary btn-md" href="{{ route('customer.session.index') }}" style="color: #ffffff">
|
||||
{{ __('shop::app.header.sign-in') }}
|
||||
</a>
|
||||
|
||||
<a class="btn btn-primary btn-sm" href="{{ route('customer.register.index') }}" style="float: right; color: #ffffff">
|
||||
<a class="btn btn-primary btn-md" href="{{ route('customer.register.index') }}" style="float: right; color: #ffffff">
|
||||
{{ __('shop::app.header.sign-up') }}
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
$font-color: #3a3a3a;
|
||||
$brand-color: #0041FF;
|
||||
$selection-color: rgba(0, 64, 255, 0.6);
|
||||
$info-color: #204d74;
|
||||
$danger-color: #FC6868;
|
||||
$success-color: #4CAF50;
|
||||
|
|
|
|||
|
|
@ -15,6 +15,11 @@
|
|||
outline: none;
|
||||
}
|
||||
|
||||
body {
|
||||
letter-spacing: -0.26px;
|
||||
line-height: 19px;
|
||||
}
|
||||
|
||||
a:link,
|
||||
a:hover,
|
||||
a:visited,
|
||||
|
|
@ -24,6 +29,11 @@ a:active {
|
|||
color: $brand-color;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background-color: $selection-color;
|
||||
color: $color-white;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: none;
|
||||
}
|
||||
|
|
@ -145,6 +155,10 @@ h5 {
|
|||
}
|
||||
}
|
||||
|
||||
.dropdown-toggle {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.dropdown-open {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue