microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v2.0.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Samples/Samples.Tab/Web/src/App.css

43lines · modepreview

body {
  margin: 0px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

a {
  color: white;
}

h1 {
  font-size: 3rem;
}

.App {
  color: white;
  background-color: #282c34;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  justify-content: start;
  align-items: center;
  height: 100vh;
  overflow: hidden auto;
}

.App > * {
  max-width: calc(100% - 4rem);
}

.actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
}

.result {
  color: white;
  background-color: black;
  padding: 0 1rem;
  overflow: auto;
}