1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00

fix iframe size in webclipper

This commit is contained in:
Andrew Simachev 2024-03-14 09:23:05 +01:00
parent 60ce5c2ae1
commit fb1e38e500
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8

View file

@ -1,7 +1,7 @@
#anytypeWebclipper-container { position: fixed; z-index: 100000; width: 100%; height: 100%; left: 0px; top: 0px; display: none; }
#anytypeWebclipper-iframe {
position: absolute; z-index: 1; width: 800px; height: 600px; background: #fff; left: 50%; top: 50%; margin: -300px 0px 0px -400px;
position: absolute; z-index: 1; width: 50%; height: 80%; background: #fff; left: 50%; top: 50%; transform: translate3d(-50%,-50%,0px);
border-radius: 16px; border: 1px solid rgba(172, 169, 152, 0.12); box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
}