removed css modules from css

This commit is contained in:
Bilawal Hameed
2020-04-23 16:56:44 +02:00
parent 54908acd59
commit c521e175f9
5 changed files with 51 additions and 9 deletions
@@ -1,11 +1,11 @@
.bubble {
.bubble,
.visibleBubble {
pointer-events: none;
user-select: none;
opacity: 0;
}
.visibleBubble {
composes: bubble;
opacity: 0.8;
}
@@ -14,7 +14,13 @@
}
.text {
composes: text from './index.css';
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
pointer-events: none;
user-select: none;
font-size: 10px;
fill: #fff;
}
@@ -1,5 +1,11 @@
.text {
composes: text from './index.css';
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
pointer-events: none;
user-select: none;
font-size: 9px;
fill: #fff;
text-anchor: middle;
@@ -1,5 +1,11 @@
.text {
composes: text from './index.css';
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
pointer-events: none;
user-select: none;
font-size: 10px;
fill: #000;
}
@@ -11,7 +11,13 @@
}
.text {
composes: text from './index.css';
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
pointer-events: none;
user-select: none;
fill: #e5e5e5;
font-size: 25px;
font-weight: bold;
@@ -6,7 +6,13 @@
}
.quadrantHeading {
composes: text from './index.css';
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
pointer-events: none;
user-select: none;
margin-top: 0;
margin-bottom: calc(18px * 0.375);
font-size: 18px;
@@ -24,7 +30,13 @@
}
.ringHeading {
composes: text from './index.css';
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
pointer-events: none;
user-select: none;
margin-top: 0;
margin-bottom: calc(12px * 0.375);
font-size: 12px;
@@ -42,7 +54,13 @@
}
.entry {
composes: text from './index.css';
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
pointer-events: none;
user-select: none;
font-size: 11px;
}