Skip to content

Commit

Permalink
fe fixes for emergency
Browse files Browse the repository at this point in the history
  • Loading branch information
akariv committed Oct 14, 2023
1 parent 4693763 commit 676b945
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 24 deletions.
2 changes: 1 addition & 1 deletion projects/srm/src/app/homepage/homepage.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h1 class='tagline'>
</div>
<div class='examples-block hide-while-searching'>
<div class='emergencies hide-while-searching'>
<span class='explain'>ניתן לאתר שירותים למצב חירום המלחמתי כמו:</span>
<span class='explain'>ניתן לאתר שירותים <a (activated)='startSearch("שירותים למצב החירום", true)' clickOnReturn>למצב חירום המלחמתי</a> כמו:</span>
<div class='list'>
<a *ngFor='let emergency of emergencies' (activated)='startSearch(emergency.title, true)' clickOnReturn>{{emergency.title}}</a>
</div>
Expand Down
44 changes: 21 additions & 23 deletions projects/srm/src/app/homepage/homepage.component.less
Original file line number Diff line number Diff line change
Expand Up @@ -256,38 +256,36 @@
gap: 8px;
margin-right: -4px;

.mobile({
justify-content: center;
});
// .mobile({
// justify-content: center;
// });
.desktop({
justify-content: flex-start;
});
a {
color: @color-blue-1;
.font-rag-sans;
display: inline-block;
font-size: 16px;
font-weight: 300;
line-height: 20px;
padding: 0px 4px;
border-radius: 4px;
background: rgba(31, 55, 246, 0.10);
white-space: nowrap;
cursor: pointer;
pointer-events: all;
}
}
a {
color: @color-blue-1;
.font-rag-sans;
display: inline-block;
font-size: 16px;
font-weight: 300;
line-height: 20px;
padding: 0px 4px;
border-radius: 4px;
background: rgba(31, 55, 246, 0.10);
white-space: nowrap;
cursor: pointer;
pointer-events: all;
}
}
.emergencies {
.explain {
font-weight: 600;
}
.list {
a {
color: #9B0000;
font-weight: 600;
background: rgba(253, 202, 72, 0.30);
}
a {
color: #9B0000;
font-weight: 600;
background: rgba(253, 202, 72, 0.30);
}
}
}
Expand Down

0 comments on commit 676b945

Please sign in to comment.