Commit a1df95236a11ee20025679b626b2acd1b29e3ec5

Authored by Hayk Nazaryan
1 parent 15f704551e
Exists in master

fix favorite workers design

Showing 2 changed files with 18 additions and 1 deletions Side-by-side Diff

public/css/style_may2024.css
... ... @@ -7755,6 +7755,23 @@ main + .news {
7755 7755 border-radius: 8px;
7756 7756 border: 1px #e6e6e6 solid;
7757 7757 }
  7758 +.worker-status {
  7759 + flex-direction: column;
  7760 + row-gap: 6px;
  7761 +}
  7762 +
  7763 +.worker-status .cvs__item-text-updated-at {
  7764 + width: fit-content;
  7765 +}
  7766 +@media (min-width: 768px) {
  7767 + .worker-status {
  7768 + flex-direction: row;
  7769 + }
  7770 +
  7771 + .worker-status .cvs__item-text-updated-at {
  7772 + width: auto;
  7773 + }
  7774 +}
7758 7775 .faqs {
7759 7776 display: -webkit-box;
7760 7777 display: -ms-flexbox;
resources/views/employers/favorite.blade.php
... ... @@ -170,7 +170,7 @@
170 170 </div>
171 171 <div class="cvs__item-text">
172 172 <div class="cvs__item-text-row">
173   - <div class="flex" style="align-items: start;">
  173 + <div class="flex worker-status">
174 174 <div class="cvs__item-text-status @if ($it->status_work == 0) looking-for-job @endif">
175 175 @php
176 176 $worker_statuses = App\Enums\WorkerStatuses::getWorkerStatuses();