-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update PaymentService.php * Fix BelpostLabelService * Format Oneami code * Format Oneami code * 416. Index page * Format Oneami code * #430 Internal movement: contact person * Format Oneami code --------- Co-authored-by: Oneami <Oneami@users.noreply.github.com>
- Loading branch information
Showing
16 changed files
with
607 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
...base/migrations/2024_06_13_191952_add_index_and_contact_person_fields_to_stocks_table.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
use Illuminate\Database\Migrations\Migration; | ||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\Schema; | ||
|
||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
*/ | ||
public function up(): void | ||
{ | ||
Schema::table('stocks', function (Blueprint $table) { | ||
$table->string('address_zip', 10)->nullable()->after('address')->comment('Индекс'); | ||
$table->string('contact_person')->nullable()->after('phone')->comment('Контактное лицо'); | ||
}); | ||
} | ||
|
||
/** | ||
* Reverse the migrations. | ||
*/ | ||
public function down(): void | ||
{ | ||
Schema::table('stocks', function (Blueprint $table) { | ||
$table->dropColumn(['address_zip', 'contact_person']); | ||
}); | ||
} | ||
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.banners_index { | ||
margin: 0 -10px; | ||
|
||
&__min { | ||
display: flex; | ||
gap: 12px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
.inc-footer { | ||
padding: 22px 0 31px; | ||
font-size: 14px; | ||
|
||
&__main { | ||
margin: 0 0 12px; | ||
} | ||
|
||
&__logo { | ||
display: block; | ||
width: 133px; | ||
margin-bottom: 18px; | ||
|
||
img { | ||
width: 100%; | ||
} | ||
} | ||
|
||
&__info { | ||
|
||
&-title { | ||
font-size: 16px; | ||
text-transform: uppercase; | ||
display: inline-flex; | ||
align-items: center; | ||
flex-wrap: wrap; | ||
|
||
&.collapsed:after { | ||
transform: rotate(135deg) translateY(4px); | ||
} | ||
|
||
&:after { | ||
margin: 0 0 0 12px; | ||
display: inline-block; | ||
width: 8px; | ||
height: 8px; | ||
border-right: 1px solid #000; | ||
border-top: 1px solid #000; | ||
transform: rotate(315deg) translateY(4px); | ||
transition: border-color 0.2s; | ||
content: ""; | ||
} | ||
} | ||
|
||
&-text { | ||
padding: 14px 0; | ||
font-size: 14px; | ||
|
||
ul, | ||
ol { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 5px; | ||
list-style: none; | ||
padding: 0; | ||
|
||
li:hover { | ||
text-decoration: underline; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
@include media-breakpoint-up(md) { | ||
.inc-footer { | ||
padding: 51px 0 33px; | ||
|
||
&__logo { | ||
width: 156px; | ||
} | ||
|
||
&__info { | ||
|
||
&-title { | ||
pointer-events: none; | ||
|
||
&:after { | ||
display: none; | ||
} | ||
} | ||
|
||
&-text:not(.show) { | ||
display: block; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
.inc-instagram { | ||
margin-bottom: 40px; | ||
|
||
&__info { | ||
padding-top: 15px; | ||
|
||
&-title { | ||
font-size: 26px; | ||
font-weight: 500; | ||
line-height: 120%; | ||
text-transform: uppercase; | ||
margin: 0 0 12px; | ||
} | ||
} | ||
|
||
&__posts { | ||
display: grid; | ||
gap: 10px 5px; | ||
grid-template-columns: 1fr 1fr 1fr; | ||
|
||
&-item { | ||
aspect-ratio: 1; | ||
display: flex; | ||
overflow: hidden; | ||
|
||
img { | ||
width: 100%; | ||
object-fit: cover; | ||
} | ||
} | ||
} | ||
|
||
&__btn { | ||
display: inline-flex; | ||
align-items: center; | ||
justify-content: center; | ||
border: 1px solid #50524F; | ||
border-radius: 10px; | ||
height: 48px; | ||
width: 275px; | ||
} | ||
} | ||
|
||
@include media-breakpoint-up(md) { | ||
.inc-instagram { | ||
|
||
&__info { | ||
padding-right: 10px; | ||
|
||
&-title { | ||
font-size: 38px; | ||
margin: 0 0 24px; | ||
} | ||
} | ||
} | ||
} | ||
|
||
@include media-breakpoint-up(xl) { | ||
.inc-instagram { | ||
|
||
&__info { | ||
padding-right: 85px; | ||
|
||
&-title { | ||
font-size: 50px; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.