Files
speckle-powerbi-visuals/style/visual.css
T
Alan Rynne c7066c2242 feat: Webpack + Vue + Viewer toolbar (#36)
* feat: Build with webpack

* feat: Vue, tailwind + webpack working

* feat(vue): Upgraded to vue3

Now using our ui-components, with section box and camera views support

* chore: Minor cleanup of logs

* fix: ColorBy must only be grouping in order to color always

* fix: Bind to groupings to prevent conflicts with tooltipData inputs
2023-05-23 16:25:44 +02:00

58 lines
932 B
CSS

@import '@speckle/ui-components/style.css';
@tailwind base;
@tailwind components;
@tailwind utilities;
#speckle-app {
width: 100%;
height: 100%;
position: fixed;
}
.speckle-landing {
width: 100%;
height: 100%;
position: fixed;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.speckle-logo {
background-image: url("../assets/logo-blue-2.png");
background-repeat: no-repeat;
background-size: contain;
min-width: 200px;
min-height: 60px;
background-color: transparent;
}
.heading {
font-size: 20px;
font-weight: bold;
margin: 10px;
}
.instructions {
color: grey;
margin: 0;
}
.tip-container {
background-color: gainsboro;
border-radius: 10px;
padding: 10px;
}
.tip {
font-weight: bold;
font-style: italic;
margin: 0;
margin-bottom: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}