blob: 700df9e2306db7dbbefed9c7050816118e1037c2 [file] [log] [blame]
Philipp Schrader72beced2022-03-07 05:29:52 -08001/* This CSS is shared between all scouting app tabs. */
2
3.error_message {
4 color: red;
5}
Philipp Schrader817cce32022-03-26 15:00:00 -07006.error_message:empty,
7.progress_message:empty {
Philipp Schrader72beced2022-03-07 05:29:52 -08008 /* TODO(phil): Figure out a way to make these take up no horizontal space.
9 * I.e. It would be nice to keep the error message and the progress message
10 * aligned when they are non-empty. */
11}
Philipp Schradercf915462022-03-16 23:42:22 -070012
13/* Hidden from the user, but interactable from protractor. */
14.visually-hidden {
15 position: absolute !important;
16 top: -9999px !important;
17 left: -9999px !important;
18}