summaryrefslogtreecommitdiff
path: root/src/components/rules/RuleProviderItem.module.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/rules/RuleProviderItem.module.css')
-rw-r--r--src/components/rules/RuleProviderItem.module.css43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/components/rules/RuleProviderItem.module.css b/src/components/rules/RuleProviderItem.module.css
new file mode 100644
index 0000000..f4f52c8
--- /dev/null
+++ b/src/components/rules/RuleProviderItem.module.css
@@ -0,0 +1,43 @@
+.RuleProviderItem {
+ display: grid;
+ grid-template-columns: 40px 1fr 46px;
+ height: 100%;
+}
+
+.left {
+ display: inline-flex;
+ align-items: center;
+ color: var(--color-text-secondary);
+ opacity: 0.4;
+}
+
+.middle {
+ display: grid;
+ grid-template-rows: 1fr auto auto;
+ align-items: center;
+}
+
+.gray {
+ color: #777;
+}
+
+.refreshButtonWrapper {
+ display: grid;
+ place-items: center;
+}
+
+.rotate {
+ display: inline-flex;
+}
+.isRotating {
+ animation: rotating 3s infinite linear;
+}
+
+@keyframes rotating {
+ from {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(360deg);
+ }
+}