Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ant-design-pro-vue
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tianzhuanghu
ant-design-pro-vue
Commits
3c350de1
Commit
3c350de1
authored
Jan 07, 2019
by
Sendya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: #45 height overflow
parent
95ff7929
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
App.vue
src/App.vue
+6
-0
GlobalFooter.vue
src/components/page/GlobalFooter.vue
+0
-3
GlobalLayout.vue
src/components/page/GlobalLayout.vue
+1
-3
No files found.
src/App.vue
View file @
3c350de1
...
...
@@ -44,3 +44,8 @@
}
}
</
script
>
<
style
>
#app
{
height
:
100%
;
}
</
style
>
\ No newline at end of file
src/components/page/GlobalFooter.vue
View file @
3c350de1
...
...
@@ -7,7 +7,6 @@
</a>
<a
href=
"https://ant.design/"
>
Ant Design
</a>
<a
href=
"https://vuecomponent.github.io/ant-design-vue/docs/vue/introduce-cn/"
>
Vue Antd
</a>
<a>
Antd-Vue Version@
{{
version
}}
</a>
</div>
<div
class=
"copyright"
>
Copyright
...
...
@@ -18,12 +17,10 @@
</
template
>
<
script
>
import
{
version
}
from
'ant-design-vue'
export
default
{
name
:
'LayoutFooter'
,
data
()
{
return
{
version
}
}
}
...
...
src/components/page/GlobalLayout.vue
View file @
3c350de1
...
...
@@ -47,7 +47,7 @@
</a-drawer>
</
template
>
<a-layout
:class=
"[layoutMode, `content-width-${contentWidth}`]"
:style=
"{ paddingLeft: fixSiderbar && isDesktop() ? `${sidebarOpened ? 256 : 80}px` : '0'
}"
>
<a-layout
:class=
"[layoutMode, `content-width-${contentWidth}`]"
:style=
"{ paddingLeft: fixSiderbar && isDesktop() ? `${sidebarOpened ? 256 : 80}px` : '0'
, minHeight: '100vh' }"
>
<!-- layout header -->
<global-header
:mode=
"layoutMode"
...
...
@@ -140,8 +140,6 @@
}
.layout.ant-layout
{
height
:
100%
;
min-height
:
100vh
;
overflow-x
:
hidden
;
&.mobile,&.tablet
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment