File size: 547 Bytes
63858e7
 
81fd184
 
63858e7
81fd184
63858e7
 
 
 
 
 
 
 
 
 
 
 
81fd184
 
 
63858e7
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

#sentence-input {
    margin-bottom: 0px;
    margin-right: 0px;
    margin-left: 10px;
    width: 100%;

    form {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        align-items: center;

        .form-group {
            flex-grow: 3;

            input {
                // flex-grow: 3;
                width: 50%;
                max-width: 700px;
                margin-right: 5%;
            }
        }

        .btn {
            flex-grow: 1;
        }
    }
}