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

46 lines
622 B
CSS
Raw Normal View History

2022-02-09 14:26:12 +00:00
* {
box-sizing: border-box;
}
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;
}