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 · modeblame

901704ddAlex Acebo9 months ago1body {
2margin: 0px;
3font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
4}
5
6a {
7color: white;
8}
9
10h1 {
11font-size: 3rem;
12}
13
14.App {
15color: white;
16background-color: #282c34;
17display: flex;
18flex-direction: column;
19row-gap: 1rem;
20justify-content: start;
21align-items: center;
22height: 100vh;
23overflow: hidden auto;
24}
25
26.App > * {
27max-width: calc(100% - 4rem);
28}
29
30.actions {
31display: flex;
32flex-direction: row;
33align-items: center;
34justify-content: center;
35column-gap: 1rem;
36}
37
38.result {
39color: white;
40background-color: black;
41padding: 0 1rem;
42overflow: auto;
43}