Skip to content

Commit

Permalink
feat(4ps): update create job template ui
Browse files Browse the repository at this point in the history
  • Loading branch information
develite98 committed Jan 11, 2024
1 parent c1edaf4 commit f485a22
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 2 additions & 0 deletions apps/mix-database/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ module.exports = {
content: [
join(__dirname, 'src/**/!(*.stories|*.spec).{ts,html,scss}'),
...createGlobPatternsForDependencies(__dirname),
'libs/mix-share/**/!(*.stories|*.spec).{ts,html,scss}',
'libs/mix-ui/**/!(*.stories|*.spec).{ts,html,scss}',
],
theme: {
extend: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<div class="main-toolbar shadow">
<div class="main-toolbar">
<div *ngIf="showExpandBtn"
class="main-toolbar__expand-btn">
<collapse-btn (click)="expandChange.emit()"></collapse-btn>
</div>

<mix-location-controller></mix-location-controller>
<mix-location-controller class="hidden md:block"></mix-location-controller>

<div *ngIf="toolbarService.templatePortal$ | async as portal"
class="main-toolbar__custom-portal">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
height: 55px;
background-color: var(--background-color-primary);
z-index: 3;
border-bottom: 1px solid var(--border-color-default);

&__expand-btn {
margin: 0px 16px 0px 14px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
height: 100%;
display: flex;
flex-direction: column;
box-shadow: -25px 5px 25px -40px #00000080 inset;
border: 1px solid var(--border-color-default);
border-right: 1px solid var(--border-color-default);

&__top {
padding: 1rem 1rem 0 1rem;
Expand Down
5 changes: 2 additions & 3 deletions libs/mix-ui/src/breadcrumbs/breadcrumbs.component.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<nav class="flex"
aria-label="Breadcrumb">
<ol class="inline-flex items-center space-x-1 md:space-x-2 rtl:space-x-reverse">
@for (item of displayItems(); track item; let idx = $index) {
<li class="inline-flex items-center">
@for (item of displayItems(); track item; let idx = $index, last = $last) {
<li class="hidden lg:inline-flex items-center">
<svg *ngIf="idx > 0"
class="rtl:rotate-180 w-3 h-3 text-gray-400 mx-1"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 6 10">
Expand Down

0 comments on commit f485a22

Please sign in to comment.