summaryrefslogtreecommitdiff
path: root/src/components/ProxyProvider.module.css
diff options
context:
space:
mode:
authorHaishan <[email protected]>2019-12-20 17:45:05 +0800
committerHaishan <[email protected]>2019-12-20 17:45:05 +0800
commitd81592ec970d207d4e37beb6c275ad6b77979e39 (patch)
tree33aac796297864d95307f21d6a9aa790e3c33c09 /src/components/ProxyProvider.module.css
parent040c5de04a75415490f9c478d931b7707bfa2486 (diff)
feat: support proxy provider
Diffstat (limited to 'src/components/ProxyProvider.module.css')
-rw-r--r--src/components/ProxyProvider.module.css43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/components/ProxyProvider.module.css b/src/components/ProxyProvider.module.css
new file mode 100644
index 0000000..6668f67
--- /dev/null
+++ b/src/components/ProxyProvider.module.css
@@ -0,0 +1,43 @@
+.header {
+ display: flex;
+ align-items: center;
+ cursor: pointer;
+
+ .arrow {
+ display: inline-flex;
+ transform: rotate(0deg);
+ transition: transform 0.3s;
+ &.isOpen {
+ transform: rotate(180deg);
+ }
+
+ &:focus {
+ outline: var(--color-focus-blue) solid 1px;
+ }
+ }
+}
+
+.updatedAt {
+ margin-bottom: 12px;
+ small {
+ color: #777;
+ }
+}
+
+.body {
+ padding: 10px 15px;
+ @media (--breakpoint-not-small) {
+ padding: 10px 40px;
+ }
+}
+
+.actionFooter {
+ display: flex;
+}
+
+.refresh {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ cursor: pointer;
+}