EmptyLayout.razor 506 B

12345678910111213141516171819
  1. @inherits LayoutComponentBase
  2. <AntDesign.Layout Class="site-layout-background-img">
  3. <Content Style="padding: 24px;min-height: 280px;">
  4. @Body
  5. </Content>
  6. <Footer Style="text-align: center;height:50px;"> ©2021 Created by 小美知识产权</Footer>
  7. </AntDesign.Layout>
  8. <style>
  9. .site-layout-background-img {
  10. background-attachment: fixed;
  11. background-repeat: no-repeat;
  12. background-size: cover;
  13. background-position: center;
  14. }
  15. </style>