@uniai-fe/uds-templates 0.3.8 → 0.3.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/styles.css CHANGED
@@ -103,20 +103,21 @@
103
103
  .page-frame-container {
104
104
  width: 100%;
105
105
  min-height: 100vh;
106
+ height: 100%;
106
107
  background-color: var(--uds-page-frame-background);
107
108
  }
108
109
 
109
110
  .page-frame-service-frame {
110
111
  width: 100%;
111
112
  min-height: 100vh;
113
+ height: 100%;
112
114
  display: flex;
113
115
  }
114
116
 
115
117
  .page-frame-service-main {
116
118
  width: calc(100% - var(--uds-page-nav-width));
117
119
  min-height: 100vh;
118
- display: flex;
119
- flex-direction: column;
120
+ height: 100%;
120
121
  }
121
122
 
122
123
  .page-frame-service-main-wrapper {
@@ -124,6 +125,7 @@
124
125
  height: calc(100% - var(--uds-page-header-height));
125
126
  padding: var(--uds-page-body-padding-vertical) var(--uds-page-body-padding-horizontal);
126
127
  background-color: var(--uds-page-body-background);
128
+ overflow-y: auto;
127
129
  position: relative;
128
130
  z-index: 0;
129
131
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniai-fe/uds-templates",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "description": "UNIAI Design System; UI Templates Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -2,6 +2,7 @@
2
2
  .page-frame-container {
3
3
  width: 100%;
4
4
  min-height: 100vh;
5
+ height: 100%;
5
6
  background-color: var(--uds-page-frame-background);
6
7
  }
7
8
 
@@ -9,6 +10,7 @@
9
10
  .page-frame-service-frame {
10
11
  width: 100%;
11
12
  min-height: 100vh;
13
+ height: 100%;
12
14
  display: flex;
13
15
  }
14
16
 
@@ -16,8 +18,9 @@
16
18
  .page-frame-service-main {
17
19
  width: calc(100% - var(--uds-page-nav-width));
18
20
  min-height: 100vh;
19
- display: flex;
20
- flex-direction: column;
21
+ height: 100%;
22
+ // display: flex;
23
+ // flex-direction: column;
21
24
  }
22
25
 
23
26
  // 본문 스크롤 영역: 헤더 높이를 제외하고 padding을 CSS 변수로 제어한다.
@@ -27,7 +30,7 @@
27
30
  padding: var(--uds-page-body-padding-vertical)
28
31
  var(--uds-page-body-padding-horizontal);
29
32
  background-color: var(--uds-page-body-background);
30
- // overflow-y: auto;
33
+ overflow-y: auto;
31
34
 
32
35
  position: relative;
33
36
  z-index: 0;