Commit c981f1c9c74e2f1e37e1cebc3c97cbfd2a28ffce
Exists in
master
Merge branch 'master' of http://gitlab.nologostudio.ru/alarionov/rekamore-su
Showing 3 changed files Side-by-side Diff
public/css/style_may2024.css
... | ... | @@ -4003,6 +4003,18 @@ h1 { |
4003 | 4003 | grid-template-columns: repeat(2, 1fr); |
4004 | 4004 | gap: 20px; |
4005 | 4005 | } |
4006 | + | |
4007 | +.modal__buttons.modal__buttons-one-column { | |
4008 | + grid-template-columns: 1fr; | |
4009 | +} | |
4010 | + | |
4011 | +#tell_to_update_profile .main__employer-page-two-item-button { | |
4012 | + margin-left: auto; | |
4013 | + margin-right: auto; | |
4014 | + left: 0; | |
4015 | + right: 0; | |
4016 | +} | |
4017 | + | |
4006 | 4018 | @media (min-width: 768px) { |
4007 | 4019 | .main__employer-page-two-item-button { |
4008 | 4020 | position: absolute; |
... | ... | @@ -4018,6 +4030,9 @@ h1 { |
4018 | 4030 | right: 20px; |
4019 | 4031 | } |
4020 | 4032 | } |
4033 | + | |
4034 | + | |
4035 | + | |
4021 | 4036 | .main__employer-page-two-item-bottom { |
4022 | 4037 | display: -webkit-box; |
4023 | 4038 | display: -ms-flexbox; |
resources/views/index.blade.php
... | ... | @@ -192,7 +192,7 @@ |
192 | 192 | <div class="news__item-body"> |
193 | 193 | <time datetime="{{ date('d.m.Y H:i:s', strtotime($new->created_at)) }}" class="news__item-date">{{ date('d.m.Y H:i:s', strtotime($new->created_at)) }}</time> |
194 | 194 | <div class="news__item-title">{{ $new->title }}</div> |
195 | - <div class="news__item-text">{!! mb_strimwidth($new->text, 0, 100) !!}</div> | |
195 | + <div class="news__item-text">{!! mb_strimwidth($new->text, 0, 150) !!}</div> | |
196 | 196 | <div> |
197 | 197 | <a href="{{ route('detail_new', ['new' => $new->id]) }}" class="news__item-more button button_light">Читать далее</a> |
198 | 198 | </div> |
resources/views/modals/vacancy/tell_user_to_complete_profile.blade.php
1 | 1 | <div id="tell_to_update_profile" class="modal modal_bg"> |
2 | 2 | <div class="modal__body"> |
3 | 3 | <div class="modal__text">“Вы отказались дополнять свое резюме, свяжитесь с работодателем через контакты указанные в объявлении или дополните свое резюме</div> |
4 | - <div class="modal__buttons"> | |
4 | + <div class="modal__buttons modal__buttons-one-column"> | |
5 | 5 | <a href="{{ route('worker.cabinet') }}" class="button main__employer-page-two-item-button">Дополнить</a> |
6 | 6 | </div> |
7 | 7 | </div> |