LoginLayout.razor 564 B

1234567891011121314151617181920
  1. @inherits LayoutComponentBase
  2. <AntDesign.Layout Style="@Style" 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-image: url(images/bg1.jpg);
  11. background-attachment: fixed;
  12. background-repeat: no-repeat;
  13. background-size: cover;
  14. background-position: center;
  15. }
  16. </style>