wallet-connect-web-examples/wallets/react-wallet-v2/src/styles/main.css

42 lines
589 B
CSS
Raw Normal View History

2022-02-09 13:51:06 +00:00
body,
html {
position: fixed;
height: 100vh;
width: 100vw;
overflow: hidden;
}
2022-02-09 13:05:11 +00:00
.routeTransition {
width: 100%;
height: 100%;
display: flex;
flex: 1;
flex-direction: column;
}
2022-02-09 12:32:32 +00:00
.container {
2022-02-09 13:05:11 +00:00
width: 100%;
2022-02-09 12:32:32 +00:00
display: flex;
flex: 1;
flex-direction: column;
justify-content: center;
align-items: center;
}
2022-02-09 13:05:11 +00:00
.qrVideoMask {
2022-02-09 12:32:32 +00:00
width: 100%;
border-radius: 15px;
2022-02-09 13:05:11 +00:00
overflow: hidden !important;
2022-02-09 12:32:32 +00:00
position: relative;
}
2022-02-09 13:05:11 +00:00
.qrPlaceholder {
2022-02-09 12:32:32 +00:00
border: 2px rgba(139, 139, 139, 0.4) dashed;
width: 100%;
border-radius: 15px;
padding: 50px;
}
2022-02-09 13:05:11 +00:00
.qrIcon {
2022-02-09 12:32:32 +00:00
opacity: 0.3;
}