Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/website/src/assets/style/utils.scss
1030 views
.text-center {
  text-align: center;
}

.no-wrap {
  white-space: nowrap;
  flex-wrap: nowrap;
  display: inline-block;
}

.mb {
  margin-bottom: var(--space)!important;
}

.mb-x2 {
  margin-bottom: var(--space-x2)!important;
}


.pb {
  padding-bottom: var(--space)!important;
}

.ml {
  margin-left: 10px!important;
}


.show-for-small {
  display: none;
}

@media screen and (max-width: 850px) {
  .hide-for-small {
    display: none!important;
  }

  .show-for-small {
    display: inherit;
  }
}