Home / File/ Todos.css — react Source File

Todos.css — react Source File

Architecture documentation for Todos.css, a css file in the react codebase. 0 imports, 1 dependents.

File css BabelCompiler 1 dependents

Entity Profile

Dependency Diagram

graph LR
  6c1b6d6e_2fe8_f022_b057_933dcc2ec002["Todos.css"]
  c3489d06_1452_f7f8_d28f_240d296f1926["Todos.tsx"]
  c3489d06_1452_f7f8_d28f_240d296f1926 --> 6c1b6d6e_2fe8_f022_b057_933dcc2ec002
  style 6c1b6d6e_2fe8_f022_b057_933dcc2ec002 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

body {
  font-family: system-ui;
  color-scheme: light dark;
}

form {
  display: grid;
  grid-template-columns: auto 1fr;
  flex-direction: column;
  max-width: 400px;
  gap: 8px;
}

label {
  display: contents;
}

main {
  display: flex;
  gap: 32px;
}

.todo-column {
  width: 250px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 250px;
  padding: 8px;
  padding-right: 40px;
  box-sizing: border-box;
}

.todo-list {
  max-width: 250px;
  padding: 0;
  list-style: none;
  padding-right: 32px;
  border-right: 1px solid gray;

  li {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    accent-color: light-dark(black, white);

    a {
      color: inherit;
      text-decoration: none;
      width: 100%;
    }

    &[data-selected] {
      background-color: light-dark(#222, #ddd);
      color: light-dark(#ddd, #222);
      accent-color: light-dark(white, black);
    }
  }
}

Domain

Frequently Asked Questions

What does Todos.css do?
Todos.css is a source file in the react codebase, written in css. It belongs to the BabelCompiler domain.
What files import Todos.css?
Todos.css is imported by 1 file(s): Todos.tsx.
Where is Todos.css in the architecture?
Todos.css is located at fixtures/flight-parcel/src/Todos.css (domain: BabelCompiler, directory: fixtures/flight-parcel/src).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free