From 237b9b6da9f3b2c6bf031a94d0f1a729d5a5898f Mon Sep 17 00:00:00 2001 From: mustafa-rezae Date: Wed, 16 Apr 2025 18:51:48 +0330 Subject: [PATCH] Work on library show page. --- components/haditha/CardList.vue | 192 +++++++++-------------- pages/haditha/library/index.vue | 260 ++++++++++++++++---------------- 2 files changed, 203 insertions(+), 249 deletions(-) diff --git a/components/haditha/CardList.vue b/components/haditha/CardList.vue index b63e54c..11fade0 100644 --- a/components/haditha/CardList.vue +++ b/components/haditha/CardList.vue @@ -30,141 +30,89 @@ const goToLibraryShow = (item) => { diff --git a/pages/haditha/library/index.vue b/pages/haditha/library/index.vue index dae0e9c..7e8e15b 100644 --- a/pages/haditha/library/index.vue +++ b/pages/haditha/library/index.vue @@ -1,5 +1,8 @@ - @@ -165,11 +114,30 @@ const CardList = defineAsyncComponent(() =>
- +
+ + +
+ + + + + +
+
@@ -178,5 +146,43 @@ const CardList = defineAsyncComponent(() => .search-box-container { padding-top: 8.3em; background: #f7fffd; + + .library-list-contianer { + margin-top: 10em; + max-width: 1200px; + width: 100%; + margin: 0 1em; + margin-right: auto; + margin-left: auto; + + .page-header { + margin-bottom: 2em; + .title { + margin-left: 0.4em; + font-family: IRANSansX; + font-weight: 300; + font-size: 24px; + line-height: 36px; + letter-spacing: 0%; + text-align: center; + + color: var(--ui-color-two); + } + } + + .library-list { + /* padding: 1em 1.3em; */ + height: calc(100dvh - 13.5em); + overflow-y: auto; + } + .no-data-text { + font-family: IRANSansX; + font-weight: 300; + font-size: 16px; + line-height: 24px; + letter-spacing: 0%; + text-align: center; + } + } }